2 * F81532/F81534 USB to Serial Ports Bridge
4 * F81532 => 2 Serial Ports
5 * F81534 => 4 Serial Ports
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; either version 2 of the License, or
10 * (at your option) any later version.
12 * Copyright (C) 2016 Feature Integration Technology Inc., (Fintek)
16 * The F81532/F81534 had 1 control endpoint for setting, 1 endpoint bulk-out
17 * for all serial port TX and 1 endpoint bulk-in for all serial port read in
18 * (Read Data/MSR/LSR).
20 * Write URB is fixed with 512bytes, per serial port used 128Bytes.
21 * It can be described by f81534_prepare_write_buffer()
23 * Read URB is 512Bytes max, per serial port used 128Bytes.
24 * It can be described by f81534_process_read_urb() and maybe received with
28 #include <linux/slab.h>
29 #include <linux/tty.h>
30 #include <linux/tty_flip.h>
31 #include <linux/usb.h>
32 #include <linux/usb/serial.h>
33 #include <linux/serial_reg.h>
34 #include <linux/module.h>
35 #include <linux/uaccess.h>
37 /* Serial Port register Address */
38 #define F81534_UART_BASE_ADDRESS 0x1200
39 #define F81534_UART_OFFSET 0x10
40 #define F81534_DIVISOR_LSB_REG (0x00 + F81534_UART_BASE_ADDRESS)
41 #define F81534_DIVISOR_MSB_REG (0x01 + F81534_UART_BASE_ADDRESS)
42 #define F81534_FIFO_CONTROL_REG (0x02 + F81534_UART_BASE_ADDRESS)
43 #define F81534_LINE_CONTROL_REG (0x03 + F81534_UART_BASE_ADDRESS)
44 #define F81534_MODEM_CONTROL_REG (0x04 + F81534_UART_BASE_ADDRESS)
45 #define F81534_MODEM_STATUS_REG (0x06 + F81534_UART_BASE_ADDRESS)
46 #define F81534_CONFIG1_REG (0x09 + F81534_UART_BASE_ADDRESS)
48 #define F81534_DEF_CONF_ADDRESS_START 0x3000
49 #define F81534_DEF_CONF_SIZE 8
51 #define F81534_CUSTOM_ADDRESS_START 0x2f00
52 #define F81534_CUSTOM_DATA_SIZE 0x10
53 #define F81534_CUSTOM_NO_CUSTOM_DATA 0xff
54 #define F81534_CUSTOM_VALID_TOKEN 0xf0
55 #define F81534_CONF_OFFSET 1
57 #define F81534_MAX_DATA_BLOCK 64
58 #define F81534_MAX_BUS_RETRY 20
60 /* Default URB timeout for USB operations */
61 #define F81534_USB_MAX_RETRY 10
62 #define F81534_USB_TIMEOUT 1000
63 #define F81534_SET_GET_REGISTER 0xA0
65 #define F81534_NUM_PORT 4
66 #define F81534_UNUSED_PORT 0xff
67 #define F81534_WRITE_BUFFER_SIZE 512
69 #define DRIVER_DESC "Fintek F81532/F81534"
70 #define FINTEK_VENDOR_ID_1 0x1934
71 #define FINTEK_VENDOR_ID_2 0x2C42
72 #define FINTEK_DEVICE_ID 0x1202
73 #define F81534_MAX_TX_SIZE 124
74 #define F81534_MAX_RX_SIZE 124
75 #define F81534_RECEIVE_BLOCK_SIZE 128
76 #define F81534_MAX_RECEIVE_BLOCK_SIZE 512
78 #define F81534_TOKEN_RECEIVE 0x01
79 #define F81534_TOKEN_WRITE 0x02
80 #define F81534_TOKEN_TX_EMPTY 0x03
81 #define F81534_TOKEN_MSR_CHANGE 0x04
84 * We used interal SPI bus to access FLASH section. We must wait the SPI bus to
85 * idle if we performed any command.
87 * SPI Bus status register: F81534_BUS_REG_STATUS
91 #define F81534_BUS_BUSY (BIT(0) | BIT(1))
92 #define F81534_BUS_IDLE BIT(2)
93 #define F81534_BUS_READ_DATA 0x1004
94 #define F81534_BUS_REG_STATUS 0x1003
95 #define F81534_BUS_REG_START 0x1002
96 #define F81534_BUS_REG_END 0x1001
98 #define F81534_CMD_READ 0x03
100 #define F81534_DEFAULT_BAUD_RATE 9600
101 #define F81534_MAX_BAUDRATE 115200
103 #define F81534_PORT_CONF_DISABLE_PORT BIT(3)
104 #define F81534_PORT_CONF_NOT_EXIST_PORT BIT(7)
105 #define F81534_PORT_UNAVAILABLE \
106 (F81534_PORT_CONF_DISABLE_PORT | F81534_PORT_CONF_NOT_EXIST_PORT)
108 #define F81534_1X_RXTRIGGER 0xc3
109 #define F81534_8X_RXTRIGGER 0xcf
111 static const struct usb_device_id f81534_id_table[] = {
112 { USB_DEVICE(FINTEK_VENDOR_ID_1, FINTEK_DEVICE_ID) },
113 { USB_DEVICE(FINTEK_VENDOR_ID_2, FINTEK_DEVICE_ID) },
114 {} /* Terminating entry */
117 #define F81534_TX_EMPTY_BIT 0
119 struct f81534_serial_private {
120 u8 conf_data[F81534_DEF_CONF_SIZE];
121 int tty_idx[F81534_NUM_PORT];
124 struct mutex urb_mutex;
127 struct f81534_port_private {
128 struct mutex mcr_mutex;
129 unsigned long tx_empty;
136 static int f81534_logic_to_phy_port(struct usb_serial *serial,
137 struct usb_serial_port *port)
139 struct f81534_serial_private *serial_priv =
140 usb_get_serial_data(port->serial);
144 for (i = 0; i < F81534_NUM_PORT; ++i) {
145 if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
148 if (port->port_number == count)
157 static int f81534_set_register(struct usb_serial *serial, u16 reg, u8 data)
159 struct usb_interface *interface = serial->interface;
160 struct usb_device *dev = serial->dev;
161 size_t count = F81534_USB_MAX_RETRY;
165 tmp = kmalloc(sizeof(u8), GFP_KERNEL);
172 * Our device maybe not reply when heavily loading, We'll retry for
173 * F81534_USB_MAX_RETRY times.
176 status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
177 F81534_SET_GET_REGISTER,
178 USB_TYPE_VENDOR | USB_DIR_OUT,
179 reg, 0, tmp, sizeof(u8),
184 } else if (status == 0) {
190 dev_err(&interface->dev, "%s: reg: %x data: %x failed: %d\n",
191 __func__, reg, data, status);
198 static int f81534_get_register(struct usb_serial *serial, u16 reg, u8 *data)
200 struct usb_interface *interface = serial->interface;
201 struct usb_device *dev = serial->dev;
202 size_t count = F81534_USB_MAX_RETRY;
206 tmp = kmalloc(sizeof(u8), GFP_KERNEL);
211 * Our device maybe not reply when heavily loading, We'll retry for
212 * F81534_USB_MAX_RETRY times.
215 status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
216 F81534_SET_GET_REGISTER,
217 USB_TYPE_VENDOR | USB_DIR_IN,
218 reg, 0, tmp, sizeof(u8),
223 } else if (status == 0) {
229 dev_err(&interface->dev, "%s: reg: %x failed: %d\n", __func__,
241 static int f81534_set_port_register(struct usb_serial_port *port, u16 reg,
244 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
246 return f81534_set_register(port->serial,
247 reg + port_priv->phy_num * F81534_UART_OFFSET, data);
250 static int f81534_get_port_register(struct usb_serial_port *port, u16 reg,
253 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
255 return f81534_get_register(port->serial,
256 reg + port_priv->phy_num * F81534_UART_OFFSET, data);
260 * If we try to access the internal flash via SPI bus, we should check the bus
261 * status for every command. e.g., F81534_BUS_REG_START/F81534_BUS_REG_END
263 static int f81534_wait_for_spi_idle(struct usb_serial *serial)
265 size_t count = F81534_MAX_BUS_RETRY;
270 status = f81534_get_register(serial, F81534_BUS_REG_STATUS,
275 if (tmp & F81534_BUS_BUSY)
278 if (tmp & F81534_BUS_IDLE)
284 dev_err(&serial->interface->dev,
285 "%s: timed out waiting for idle SPI bus\n",
290 return f81534_set_register(serial, F81534_BUS_REG_STATUS,
291 tmp & ~F81534_BUS_IDLE);
294 static int f81534_get_spi_register(struct usb_serial *serial, u16 reg,
299 status = f81534_get_register(serial, reg, data);
303 return f81534_wait_for_spi_idle(serial);
306 static int f81534_set_spi_register(struct usb_serial *serial, u16 reg, u8 data)
310 status = f81534_set_register(serial, reg, data);
314 return f81534_wait_for_spi_idle(serial);
317 static int f81534_read_flash(struct usb_serial *serial, u32 address,
318 size_t size, u8 *buf)
320 u8 tmp_buf[F81534_MAX_DATA_BLOCK];
328 status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
333 status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
334 (address >> 16) & 0xff);
338 status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
339 (address >> 8) & 0xff);
343 status = f81534_set_spi_register(serial, F81534_BUS_REG_START,
344 (address >> 0) & 0xff);
348 /* Continuous read mode */
350 read_size = min_t(size_t, F81534_MAX_DATA_BLOCK, size);
352 for (count = 0; count < read_size; ++count) {
353 /* To write F81534_BUS_REG_END when final byte */
354 if (size <= F81534_MAX_DATA_BLOCK &&
355 read_size == count + 1)
356 reg_tmp = F81534_BUS_REG_END;
358 reg_tmp = F81534_BUS_REG_START;
361 * Dummy code, force IC to generate a read pulse, the
362 * set of value 0xf1 is dont care (any value is ok)
364 status = f81534_set_spi_register(serial, reg_tmp,
369 status = f81534_get_spi_register(serial,
370 F81534_BUS_READ_DATA,
375 offset = count + block * F81534_MAX_DATA_BLOCK;
376 buf[offset] = tmp_buf[count];
386 static void f81534_prepare_write_buffer(struct usb_serial_port *port, u8 *buf)
388 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
389 int phy_num = port_priv->phy_num;
394 * The block layout is fixed with 4x128 Bytes, per 128 Bytes a port.
395 * index 0: port phy idx (e.g., 0,1,2,3)
396 * index 1: only F81534_TOKEN_WRITE
397 * index 2: serial TX out length
399 * index 4~127: serial out data block
401 for (i = 0; i < F81534_NUM_PORT; ++i) {
402 buf[i * F81534_RECEIVE_BLOCK_SIZE] = i;
403 buf[i * F81534_RECEIVE_BLOCK_SIZE + 1] = F81534_TOKEN_WRITE;
404 buf[i * F81534_RECEIVE_BLOCK_SIZE + 2] = 0;
405 buf[i * F81534_RECEIVE_BLOCK_SIZE + 3] = 0;
408 tx_len = kfifo_out_locked(&port->write_fifo,
409 &buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 4],
410 F81534_MAX_TX_SIZE, &port->lock);
412 buf[phy_num * F81534_RECEIVE_BLOCK_SIZE + 2] = tx_len;
415 static int f81534_submit_writer(struct usb_serial_port *port, gfp_t mem_flags)
417 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
422 /* Check is any data in write_fifo */
423 spin_lock_irqsave(&port->lock, flags);
425 if (kfifo_is_empty(&port->write_fifo)) {
426 spin_unlock_irqrestore(&port->lock, flags);
430 spin_unlock_irqrestore(&port->lock, flags);
432 /* Check H/W is TXEMPTY */
433 if (!test_and_clear_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty))
436 urb = port->write_urbs[0];
437 f81534_prepare_write_buffer(port, port->bulk_out_buffers[0]);
438 urb->transfer_buffer_length = F81534_WRITE_BUFFER_SIZE;
440 result = usb_submit_urb(urb, mem_flags);
442 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
443 dev_err(&port->dev, "%s: submit failed: %d\n", __func__,
448 usb_serial_port_softint(port);
452 static u32 f81534_calc_baud_divisor(u32 baudrate, u32 clockrate)
457 /* Round to nearest divisor */
458 return DIV_ROUND_CLOSEST(clockrate, baudrate);
461 static int f81534_set_port_config(struct usb_serial_port *port, u32 baudrate,
468 if (baudrate <= 1200)
469 value = F81534_1X_RXTRIGGER; /* 128 FIFO & TL: 1x */
471 value = F81534_8X_RXTRIGGER; /* 128 FIFO & TL: 8x */
473 status = f81534_set_port_register(port, F81534_CONFIG1_REG, value);
475 dev_err(&port->dev, "%s: CONFIG1 setting failed\n", __func__);
479 if (baudrate <= 1200)
480 value = UART_FCR_TRIGGER_1 | UART_FCR_ENABLE_FIFO; /* TL: 1 */
482 value = UART_FCR_R_TRIG_11 | UART_FCR_ENABLE_FIFO; /* TL: 14 */
484 status = f81534_set_port_register(port, F81534_FIFO_CONTROL_REG,
487 dev_err(&port->dev, "%s: FCR setting failed\n", __func__);
491 divisor = f81534_calc_baud_divisor(baudrate, F81534_MAX_BAUDRATE);
492 value = UART_LCR_DLAB;
493 status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG,
496 dev_err(&port->dev, "%s: set LCR failed\n", __func__);
500 value = divisor & 0xff;
501 status = f81534_set_port_register(port, F81534_DIVISOR_LSB_REG, value);
503 dev_err(&port->dev, "%s: set DLAB LSB failed\n", __func__);
507 value = (divisor >> 8) & 0xff;
508 status = f81534_set_port_register(port, F81534_DIVISOR_MSB_REG, value);
510 dev_err(&port->dev, "%s: set DLAB MSB failed\n", __func__);
514 status = f81534_set_port_register(port, F81534_LINE_CONTROL_REG, lcr);
516 dev_err(&port->dev, "%s: set LCR failed\n", __func__);
523 static int f81534_update_mctrl(struct usb_serial_port *port, unsigned int set,
526 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
530 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
531 return 0; /* no change */
533 mutex_lock(&port_priv->mcr_mutex);
535 /* 'Set' takes precedence over 'Clear' */
538 /* Always enable UART_MCR_OUT2 */
539 tmp = UART_MCR_OUT2 | port_priv->shadow_mcr;
541 if (clear & TIOCM_DTR)
542 tmp &= ~UART_MCR_DTR;
544 if (clear & TIOCM_RTS)
545 tmp &= ~UART_MCR_RTS;
553 status = f81534_set_port_register(port, F81534_MODEM_CONTROL_REG, tmp);
555 dev_err(&port->dev, "%s: MCR write failed\n", __func__);
556 mutex_unlock(&port_priv->mcr_mutex);
560 port_priv->shadow_mcr = tmp;
561 mutex_unlock(&port_priv->mcr_mutex);
566 * This function will search the data area with token F81534_CUSTOM_VALID_TOKEN
567 * for latest configuration index. If nothing found
568 * (*index = F81534_CUSTOM_NO_CUSTOM_DATA), We'll load default configure in
569 * F81534_DEF_CONF_ADDRESS_START section.
571 * Due to we only use block0 to save data, so *index should be 0 or
572 * F81534_CUSTOM_NO_CUSTOM_DATA.
574 static int f81534_find_config_idx(struct usb_serial *serial, u8 *index)
579 status = f81534_read_flash(serial, F81534_CUSTOM_ADDRESS_START, 1,
582 dev_err(&serial->interface->dev, "%s: read failed: %d\n",
587 /* We'll use the custom data when the data is valid. */
588 if (tmp == F81534_CUSTOM_VALID_TOKEN)
591 *index = F81534_CUSTOM_NO_CUSTOM_DATA;
597 * We had 2 generation of F81532/534 IC. All has an internal storage.
599 * 1st is pure USB-to-TTL RS232 IC and designed for 4 ports only, no any
600 * internal data will used. All mode and gpio control should manually set
601 * by AP or Driver and all storage space value are 0xff. The
602 * f81534_calc_num_ports() will run to final we marked as "oldest version"
605 * 2rd is designed to more generic to use any transceiver and this is our
606 * mass production type. We'll save data in F81534_CUSTOM_ADDRESS_START
607 * (0x2f00) with 9bytes. The 1st byte is a indicater. If the token is
608 * F81534_CUSTOM_VALID_TOKEN(0xf0), the IC is 2nd gen type, the following
609 * 4bytes save port mode (0:RS232/1:RS485 Invert/2:RS485), and the last
610 * 4bytes save GPIO state(value from 0~7 to represent 3 GPIO output pin).
611 * The f81534_calc_num_ports() will run to "new style" with checking
612 * F81534_PORT_UNAVAILABLE section.
614 static int f81534_calc_num_ports(struct usb_serial *serial)
616 u8 setting[F81534_CUSTOM_DATA_SIZE];
622 /* Check had custom setting */
623 status = f81534_find_config_idx(serial, &setting_idx);
625 dev_err(&serial->interface->dev, "%s: find idx failed: %d\n",
631 * We'll read custom data only when data available, otherwise we'll
632 * read default value instead.
634 if (setting_idx != F81534_CUSTOM_NO_CUSTOM_DATA) {
635 status = f81534_read_flash(serial,
636 F81534_CUSTOM_ADDRESS_START +
638 sizeof(setting), setting);
640 dev_err(&serial->interface->dev,
641 "%s: get custom data failed: %d\n",
646 dev_dbg(&serial->interface->dev,
647 "%s: read config from block: %d\n", __func__,
650 /* Read default board setting */
651 status = f81534_read_flash(serial,
652 F81534_DEF_CONF_ADDRESS_START, F81534_NUM_PORT,
656 dev_err(&serial->interface->dev,
657 "%s: read failed: %d\n", __func__,
662 dev_dbg(&serial->interface->dev, "%s: read default config\n",
666 /* New style, find all possible ports */
667 for (i = 0; i < F81534_NUM_PORT; ++i) {
668 if (setting[i] & F81534_PORT_UNAVAILABLE)
677 dev_warn(&serial->interface->dev, "%s: Read Failed. default 4 ports\n",
679 return 4; /* Nothing found, oldest version IC */
682 static void f81534_set_termios(struct tty_struct *tty,
683 struct usb_serial_port *port,
684 struct ktermios *old_termios)
690 if (C_BAUD(tty) == B0)
691 f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
692 else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
693 f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
696 new_lcr |= UART_LCR_PARITY;
699 new_lcr |= UART_LCR_EPAR;
702 new_lcr |= UART_LCR_SPAR;
706 new_lcr |= UART_LCR_STOP;
708 switch (C_CSIZE(tty)) {
710 new_lcr |= UART_LCR_WLEN5;
713 new_lcr |= UART_LCR_WLEN6;
716 new_lcr |= UART_LCR_WLEN7;
720 new_lcr |= UART_LCR_WLEN8;
724 baud = tty_get_baud_rate(tty);
728 if (baud > F81534_MAX_BAUDRATE) {
730 baud = tty_termios_baud_rate(old_termios);
732 baud = F81534_DEFAULT_BAUD_RATE;
734 tty_encode_baud_rate(tty, baud, baud);
737 dev_dbg(&port->dev, "%s: baud: %d\n", __func__, baud);
739 status = f81534_set_port_config(port, baud, new_lcr);
741 dev_err(&port->dev, "%s: set port config failed: %d\n",
746 static int f81534_submit_read_urb(struct usb_serial *serial, gfp_t flags)
748 return usb_serial_generic_submit_read_urbs(serial->port[0], flags);
751 static void f81534_msr_changed(struct usb_serial_port *port, u8 msr)
753 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
754 struct tty_struct *tty;
758 if (!(msr & UART_MSR_ANY_DELTA))
761 spin_lock_irqsave(&port_priv->msr_lock, flags);
762 old_msr = port_priv->shadow_msr;
763 port_priv->shadow_msr = msr;
764 spin_unlock_irqrestore(&port_priv->msr_lock, flags);
766 dev_dbg(&port->dev, "%s: MSR from %02x to %02x\n", __func__, old_msr,
769 /* Update input line counters */
770 if (msr & UART_MSR_DCTS)
772 if (msr & UART_MSR_DDSR)
774 if (msr & UART_MSR_DDCD)
776 if (msr & UART_MSR_TERI)
779 wake_up_interruptible(&port->port.delta_msr_wait);
781 if (!(msr & UART_MSR_DDCD))
784 dev_dbg(&port->dev, "%s: DCD Changed: phy_num: %d from %x to %x\n",
785 __func__, port_priv->phy_num, old_msr, msr);
787 tty = tty_port_tty_get(&port->port);
791 usb_serial_handle_dcd_change(port, tty, msr & UART_MSR_DCD);
795 static int f81534_read_msr(struct usb_serial_port *port)
797 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
802 /* Get MSR initial value */
803 status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
807 /* Force update current state */
808 spin_lock_irqsave(&port_priv->msr_lock, flags);
809 port_priv->shadow_msr = msr;
810 spin_unlock_irqrestore(&port_priv->msr_lock, flags);
815 static int f81534_open(struct tty_struct *tty, struct usb_serial_port *port)
817 struct f81534_serial_private *serial_priv =
818 usb_get_serial_data(port->serial);
819 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
822 status = f81534_set_port_register(port,
823 F81534_FIFO_CONTROL_REG, UART_FCR_ENABLE_FIFO |
824 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
826 dev_err(&port->dev, "%s: Clear FIFO failed: %d\n", __func__,
832 f81534_set_termios(tty, port, NULL);
834 status = f81534_read_msr(port);
838 mutex_lock(&serial_priv->urb_mutex);
840 /* Submit Read URBs for first port opened */
841 if (!serial_priv->opened_port) {
842 status = f81534_submit_read_urb(port->serial, GFP_KERNEL);
847 serial_priv->opened_port++;
850 mutex_unlock(&serial_priv->urb_mutex);
852 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
856 static void f81534_close(struct usb_serial_port *port)
858 struct f81534_serial_private *serial_priv =
859 usb_get_serial_data(port->serial);
860 struct usb_serial_port *port0 = port->serial->port[0];
864 usb_kill_urb(port->write_urbs[0]);
866 spin_lock_irqsave(&port->lock, flags);
867 kfifo_reset_out(&port->write_fifo);
868 spin_unlock_irqrestore(&port->lock, flags);
870 /* Kill Read URBs when final port closed */
871 mutex_lock(&serial_priv->urb_mutex);
872 serial_priv->opened_port--;
874 if (!serial_priv->opened_port) {
875 for (i = 0; i < ARRAY_SIZE(port0->read_urbs); ++i)
876 usb_kill_urb(port0->read_urbs[i]);
879 mutex_unlock(&serial_priv->urb_mutex);
882 static int f81534_get_serial_info(struct usb_serial_port *port,
883 struct serial_struct __user *retinfo)
885 struct f81534_port_private *port_priv;
886 struct serial_struct tmp;
888 port_priv = usb_get_serial_port_data(port);
890 memset(&tmp, 0, sizeof(tmp));
892 tmp.type = PORT_16550A;
893 tmp.port = port->port_number;
894 tmp.line = port->minor;
895 tmp.baud_base = F81534_MAX_BAUDRATE;
897 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
903 static int f81534_ioctl(struct tty_struct *tty, unsigned int cmd,
906 struct usb_serial_port *port = tty->driver_data;
907 struct serial_struct __user *buf = (struct serial_struct __user *)arg;
911 return f81534_get_serial_info(port, buf);
919 static void f81534_process_per_serial_block(struct usb_serial_port *port,
922 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
923 int phy_num = data[0];
924 size_t read_size = 0;
931 * The block layout is 128 Bytes
932 * index 0: port phy idx (e.g., 0,1,2,3),
933 * index 1: It's could be
934 * F81534_TOKEN_RECEIVE
935 * F81534_TOKEN_TX_EMPTY
936 * F81534_TOKEN_MSR_CHANGE
937 * index 2: serial in size (data+lsr, must be even)
938 * meaningful for F81534_TOKEN_RECEIVE only
939 * index 3: current MSR with this device
940 * index 4~127: serial in data block (data+lsr, must be even)
943 case F81534_TOKEN_TX_EMPTY:
944 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
946 /* Try to submit writer */
947 status = f81534_submit_writer(port, GFP_ATOMIC);
949 dev_err(&port->dev, "%s: submit failed\n", __func__);
952 case F81534_TOKEN_MSR_CHANGE:
953 f81534_msr_changed(port, data[3]);
956 case F81534_TOKEN_RECEIVE:
958 if (read_size > F81534_MAX_RX_SIZE) {
960 "%s: phy: %d read_size: %zu larger than: %d\n",
961 __func__, phy_num, read_size,
969 dev_warn(&port->dev, "%s: unknown token: %02x\n", __func__,
974 for (i = 4; i < 4 + read_size; i += 2) {
975 tty_flag = TTY_NORMAL;
978 if (lsr & UART_LSR_BRK_ERROR_BITS) {
979 if (lsr & UART_LSR_BI) {
980 tty_flag = TTY_BREAK;
982 usb_serial_handle_break(port);
983 } else if (lsr & UART_LSR_PE) {
984 tty_flag = TTY_PARITY;
985 port->icount.parity++;
986 } else if (lsr & UART_LSR_FE) {
987 tty_flag = TTY_FRAME;
988 port->icount.frame++;
991 if (lsr & UART_LSR_OE) {
992 port->icount.overrun++;
993 tty_insert_flip_char(&port->port, 0,
998 if (port->port.console && port->sysrq) {
999 if (usb_serial_handle_sysrq_char(port, data[i]))
1003 tty_insert_flip_char(&port->port, data[i], tty_flag);
1006 tty_flip_buffer_push(&port->port);
1009 static void f81534_process_read_urb(struct urb *urb)
1011 struct f81534_serial_private *serial_priv;
1012 struct usb_serial_port *port;
1013 struct usb_serial *serial;
1019 if (!urb->actual_length ||
1020 urb->actual_length % F81534_RECEIVE_BLOCK_SIZE) {
1024 port = urb->context;
1025 serial = port->serial;
1026 buf = urb->transfer_buffer;
1027 serial_priv = usb_get_serial_data(serial);
1029 for (i = 0; i < urb->actual_length; i += F81534_RECEIVE_BLOCK_SIZE) {
1030 phy_port_num = buf[i];
1031 if (phy_port_num >= F81534_NUM_PORT) {
1033 "%s: phy_port_num: %d larger than: %d\n",
1034 __func__, phy_port_num, F81534_NUM_PORT);
1038 tty_port_num = serial_priv->tty_idx[phy_port_num];
1039 port = serial->port[tty_port_num];
1041 if (tty_port_initialized(&port->port))
1042 f81534_process_per_serial_block(port, &buf[i]);
1046 static void f81534_write_usb_callback(struct urb *urb)
1048 struct usb_serial_port *port = urb->context;
1050 switch (urb->status) {
1056 dev_dbg(&port->dev, "%s - urb stopped: %d\n",
1057 __func__, urb->status);
1060 dev_err(&port->dev, "%s - urb stopped: %d\n",
1061 __func__, urb->status);
1064 dev_dbg(&port->dev, "%s - nonzero urb status: %d\n",
1065 __func__, urb->status);
1070 static int f81534_setup_ports(struct usb_serial *serial)
1072 struct usb_serial_port *port;
1073 u8 port0_out_address;
1078 * In our system architecture, we had 2 or 4 serial ports,
1079 * but only get 1 set of bulk in/out endpoints.
1081 * The usb-serial subsystem will generate port 0 data,
1082 * but port 1/2/3 will not. It's will generate write URB and buffer
1083 * by following code and use the port0 read URB for read operation.
1085 for (i = 1; i < serial->num_ports; ++i) {
1086 port0_out_address = serial->port[0]->bulk_out_endpointAddress;
1087 buffer_size = serial->port[0]->bulk_out_size;
1088 port = serial->port[i];
1090 if (kfifo_alloc(&port->write_fifo, PAGE_SIZE, GFP_KERNEL))
1093 port->bulk_out_size = buffer_size;
1094 port->bulk_out_endpointAddress = port0_out_address;
1096 port->write_urbs[0] = usb_alloc_urb(0, GFP_KERNEL);
1097 if (!port->write_urbs[0])
1100 port->bulk_out_buffers[0] = kzalloc(buffer_size, GFP_KERNEL);
1101 if (!port->bulk_out_buffers[0])
1104 usb_fill_bulk_urb(port->write_urbs[0], serial->dev,
1105 usb_sndbulkpipe(serial->dev,
1107 port->bulk_out_buffers[0], buffer_size,
1108 serial->type->write_bulk_callback, port);
1110 port->write_urb = port->write_urbs[0];
1111 port->bulk_out_buffer = port->bulk_out_buffers[0];
1117 static int f81534_probe(struct usb_serial *serial,
1118 const struct usb_device_id *id)
1120 struct usb_endpoint_descriptor *endpoint;
1121 struct usb_host_interface *iface_desc;
1123 int num_bulk_in = 0;
1124 int num_bulk_out = 0;
1125 int size_bulk_in = 0;
1126 int size_bulk_out = 0;
1129 dev = &serial->interface->dev;
1130 iface_desc = serial->interface->cur_altsetting;
1132 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
1133 endpoint = &iface_desc->endpoint[i].desc;
1135 if (usb_endpoint_is_bulk_in(endpoint)) {
1137 size_bulk_in = usb_endpoint_maxp(endpoint);
1140 if (usb_endpoint_is_bulk_out(endpoint)) {
1142 size_bulk_out = usb_endpoint_maxp(endpoint);
1146 if (num_bulk_in != 1 || num_bulk_out != 1) {
1147 dev_err(dev, "expected endpoints not found\n");
1151 if (size_bulk_out != F81534_WRITE_BUFFER_SIZE ||
1152 size_bulk_in != F81534_MAX_RECEIVE_BLOCK_SIZE) {
1153 dev_err(dev, "unsupported endpoint max packet size\n");
1160 static int f81534_attach(struct usb_serial *serial)
1162 struct f81534_serial_private *serial_priv;
1167 serial_priv = devm_kzalloc(&serial->interface->dev,
1168 sizeof(*serial_priv), GFP_KERNEL);
1172 usb_set_serial_data(serial, serial_priv);
1174 mutex_init(&serial_priv->urb_mutex);
1176 status = f81534_setup_ports(serial);
1180 /* Check had custom setting */
1181 status = f81534_find_config_idx(serial, &serial_priv->setting_idx);
1183 dev_err(&serial->interface->dev, "%s: find idx failed: %d\n",
1189 * We'll read custom data only when data available, otherwise we'll
1190 * read default value instead.
1192 if (serial_priv->setting_idx == F81534_CUSTOM_NO_CUSTOM_DATA) {
1194 * The default configuration layout:
1195 * byte 0/1/2/3: uart setting
1197 status = f81534_read_flash(serial,
1198 F81534_DEF_CONF_ADDRESS_START,
1199 F81534_DEF_CONF_SIZE,
1200 serial_priv->conf_data);
1202 dev_err(&serial->interface->dev,
1203 "%s: read reserve data failed: %d\n",
1208 /* Only read 8 bytes for mode & GPIO */
1209 status = f81534_read_flash(serial,
1210 F81534_CUSTOM_ADDRESS_START +
1212 sizeof(serial_priv->conf_data),
1213 serial_priv->conf_data);
1215 dev_err(&serial->interface->dev,
1216 "%s: idx: %d get data failed: %d\n",
1217 __func__, serial_priv->setting_idx,
1223 /* Assign phy-to-logic mapping */
1224 for (i = 0; i < F81534_NUM_PORT; ++i) {
1225 if (serial_priv->conf_data[i] & F81534_PORT_UNAVAILABLE)
1228 serial_priv->tty_idx[i] = index++;
1229 dev_dbg(&serial->interface->dev,
1230 "%s: phy_num: %d, tty_idx: %d\n", __func__, i,
1231 serial_priv->tty_idx[i]);
1237 static int f81534_port_probe(struct usb_serial_port *port)
1239 struct f81534_port_private *port_priv;
1241 port_priv = devm_kzalloc(&port->dev, sizeof(*port_priv), GFP_KERNEL);
1245 spin_lock_init(&port_priv->msr_lock);
1246 mutex_init(&port_priv->mcr_mutex);
1248 /* Assign logic-to-phy mapping */
1249 port_priv->phy_num = f81534_logic_to_phy_port(port->serial, port);
1250 if (port_priv->phy_num < 0 || port_priv->phy_num >= F81534_NUM_PORT)
1253 usb_set_serial_port_data(port, port_priv);
1254 dev_dbg(&port->dev, "%s: port_number: %d, phy_num: %d\n", __func__,
1255 port->port_number, port_priv->phy_num);
1260 static int f81534_tiocmget(struct tty_struct *tty)
1262 struct usb_serial_port *port = tty->driver_data;
1263 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1269 /* Read current MSR from device */
1270 status = f81534_get_port_register(port, F81534_MODEM_STATUS_REG, &msr);
1274 mutex_lock(&port_priv->mcr_mutex);
1275 mcr = port_priv->shadow_mcr;
1276 mutex_unlock(&port_priv->mcr_mutex);
1278 r = (mcr & UART_MCR_DTR ? TIOCM_DTR : 0) |
1279 (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
1280 (msr & UART_MSR_CTS ? TIOCM_CTS : 0) |
1281 (msr & UART_MSR_DCD ? TIOCM_CAR : 0) |
1282 (msr & UART_MSR_RI ? TIOCM_RI : 0) |
1283 (msr & UART_MSR_DSR ? TIOCM_DSR : 0);
1288 static int f81534_tiocmset(struct tty_struct *tty, unsigned int set,
1291 struct usb_serial_port *port = tty->driver_data;
1293 return f81534_update_mctrl(port, set, clear);
1296 static void f81534_dtr_rts(struct usb_serial_port *port, int on)
1299 f81534_update_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
1301 f81534_update_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
1304 static int f81534_write(struct tty_struct *tty, struct usb_serial_port *port,
1305 const u8 *buf, int count)
1307 int bytes_out, status;
1312 bytes_out = kfifo_in_locked(&port->write_fifo, buf, count,
1315 status = f81534_submit_writer(port, GFP_ATOMIC);
1317 dev_err(&port->dev, "%s: submit failed\n", __func__);
1324 static bool f81534_tx_empty(struct usb_serial_port *port)
1326 struct f81534_port_private *port_priv = usb_get_serial_port_data(port);
1328 return test_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1331 static int f81534_resume(struct usb_serial *serial)
1333 struct f81534_serial_private *serial_priv =
1334 usb_get_serial_data(serial);
1335 struct usb_serial_port *port;
1341 * We'll register port 0 bulkin when port had opened, It'll take all
1342 * port received data, MSR register change and TX_EMPTY information.
1344 mutex_lock(&serial_priv->urb_mutex);
1346 if (serial_priv->opened_port) {
1347 status = f81534_submit_read_urb(serial, GFP_NOIO);
1349 mutex_unlock(&serial_priv->urb_mutex);
1354 mutex_unlock(&serial_priv->urb_mutex);
1356 for (i = 0; i < serial->num_ports; i++) {
1357 port = serial->port[i];
1358 if (!tty_port_initialized(&port->port))
1361 status = f81534_submit_writer(port, GFP_NOIO);
1363 dev_err(&port->dev, "%s: submit failed\n", __func__);
1374 static struct usb_serial_driver f81534_device = {
1376 .owner = THIS_MODULE,
1379 .description = DRIVER_DESC,
1380 .id_table = f81534_id_table,
1381 .open = f81534_open,
1382 .close = f81534_close,
1383 .write = f81534_write,
1384 .tx_empty = f81534_tx_empty,
1385 .calc_num_ports = f81534_calc_num_ports,
1386 .probe = f81534_probe,
1387 .attach = f81534_attach,
1388 .port_probe = f81534_port_probe,
1389 .dtr_rts = f81534_dtr_rts,
1390 .process_read_urb = f81534_process_read_urb,
1391 .ioctl = f81534_ioctl,
1392 .tiocmget = f81534_tiocmget,
1393 .tiocmset = f81534_tiocmset,
1394 .write_bulk_callback = f81534_write_usb_callback,
1395 .set_termios = f81534_set_termios,
1396 .resume = f81534_resume,
1399 static struct usb_serial_driver *const serial_drivers[] = {
1400 &f81534_device, NULL
1403 module_usb_serial_driver(serial_drivers, f81534_id_table);
1405 MODULE_DEVICE_TABLE(usb, f81534_id_table);
1406 MODULE_DESCRIPTION(DRIVER_DESC);
1409 MODULE_LICENSE("GPL");