1 // SPDX-License-Identifier: GPL-2.0
3 * UART driver for the Greybus "generic" UART module.
5 * Copyright 2014 Google Inc.
6 * Copyright 2014 Linaro Ltd.
8 * Heavily based on drivers/usb/class/cdc-acm.c and
9 * drivers/usb/serial/usb-serial.c.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/module.h>
16 #include <linux/sched/signal.h>
17 #include <linux/wait.h>
18 #include <linux/slab.h>
19 #include <linux/uaccess.h>
20 #include <linux/mutex.h>
21 #include <linux/tty.h>
22 #include <linux/serial.h>
23 #include <linux/tty_driver.h>
24 #include <linux/tty_flip.h>
25 #include <linux/idr.h>
27 #include <linux/kdev_t.h>
28 #include <linux/kfifo.h>
29 #include <linux/workqueue.h>
30 #include <linux/completion.h>
31 #include <linux/greybus.h>
35 #define GB_NUM_MINORS 16 /* 16 is more than enough */
36 #define GB_NAME "ttyGB"
38 #define GB_UART_WRITE_FIFO_SIZE PAGE_SIZE
39 #define GB_UART_WRITE_ROOM_MARGIN 1 /* leave some space in fifo */
40 #define GB_UART_FIRMWARE_CREDITS 4096
41 #define GB_UART_CREDIT_WAIT_TIMEOUT_MSEC 10000
44 struct gbphy_device *gbphy_dev;
47 size_t buffer_payload_max;
48 struct gb_connection *connection;
54 spinlock_t write_lock;
55 struct async_icount iocount;
56 struct async_icount oldcount;
57 wait_queue_head_t wioctl;
59 u8 ctrlin; /* input control lines */
60 u8 ctrlout; /* output control lines */
61 struct gb_uart_set_line_coding_request line_coding;
62 struct work_struct tx_work;
63 struct kfifo write_fifo;
66 struct completion credits_complete;
69 static struct tty_driver *gb_tty_driver;
70 static DEFINE_IDR(tty_minors);
71 static DEFINE_MUTEX(table_lock);
73 static int gb_uart_receive_data_handler(struct gb_operation *op)
75 struct gb_connection *connection = op->connection;
76 struct gb_tty *gb_tty = gb_connection_get_data(connection);
77 struct tty_port *port = &gb_tty->port;
78 struct gb_message *request = op->request;
79 struct gb_uart_recv_data_request *receive_data;
82 unsigned long tty_flags = TTY_NORMAL;
84 if (request->payload_size < sizeof(*receive_data)) {
85 dev_err(&gb_tty->gbphy_dev->dev,
86 "short receive-data request received (%zu < %zu)\n",
87 request->payload_size, sizeof(*receive_data));
91 receive_data = op->request->payload;
92 recv_data_size = le16_to_cpu(receive_data->size);
94 if (recv_data_size != request->payload_size - sizeof(*receive_data)) {
95 dev_err(&gb_tty->gbphy_dev->dev,
96 "malformed receive-data request received (%u != %zu)\n",
98 request->payload_size - sizeof(*receive_data));
105 if (receive_data->flags) {
106 if (receive_data->flags & GB_UART_RECV_FLAG_BREAK)
107 tty_flags = TTY_BREAK;
108 else if (receive_data->flags & GB_UART_RECV_FLAG_PARITY)
109 tty_flags = TTY_PARITY;
110 else if (receive_data->flags & GB_UART_RECV_FLAG_FRAMING)
111 tty_flags = TTY_FRAME;
113 /* overrun is special, not associated with a char */
114 if (receive_data->flags & GB_UART_RECV_FLAG_OVERRUN)
115 tty_insert_flip_char(port, 0, TTY_OVERRUN);
117 count = tty_insert_flip_string_fixed_flag(port, receive_data->data,
118 tty_flags, recv_data_size);
119 if (count != recv_data_size) {
120 dev_err(&gb_tty->gbphy_dev->dev,
121 "UART: RX 0x%08x bytes only wrote 0x%08x\n",
122 recv_data_size, count);
125 tty_flip_buffer_push(port);
129 static int gb_uart_serial_state_handler(struct gb_operation *op)
131 struct gb_connection *connection = op->connection;
132 struct gb_tty *gb_tty = gb_connection_get_data(connection);
133 struct gb_message *request = op->request;
134 struct gb_uart_serial_state_request *serial_state;
136 if (request->payload_size < sizeof(*serial_state)) {
137 dev_err(&gb_tty->gbphy_dev->dev,
138 "short serial-state event received (%zu < %zu)\n",
139 request->payload_size, sizeof(*serial_state));
143 serial_state = request->payload;
144 gb_tty->ctrlin = serial_state->control;
149 static int gb_uart_receive_credits_handler(struct gb_operation *op)
151 struct gb_connection *connection = op->connection;
152 struct gb_tty *gb_tty = gb_connection_get_data(connection);
153 struct gb_message *request = op->request;
154 struct gb_uart_receive_credits_request *credit_request;
156 unsigned int incoming_credits;
159 if (request->payload_size < sizeof(*credit_request)) {
160 dev_err(&gb_tty->gbphy_dev->dev,
161 "short receive_credits event received (%zu < %zu)\n",
162 request->payload_size,
163 sizeof(*credit_request));
167 credit_request = request->payload;
168 incoming_credits = le16_to_cpu(credit_request->count);
170 spin_lock_irqsave(&gb_tty->write_lock, flags);
171 gb_tty->credits += incoming_credits;
172 if (gb_tty->credits > GB_UART_FIRMWARE_CREDITS) {
173 gb_tty->credits -= incoming_credits;
176 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
179 dev_err(&gb_tty->gbphy_dev->dev,
180 "invalid number of incoming credits: %d\n",
185 if (!gb_tty->close_pending)
186 schedule_work(&gb_tty->tx_work);
189 * the port the tty layer may be waiting for credits
191 tty_port_tty_wakeup(&gb_tty->port);
193 if (gb_tty->credits == GB_UART_FIRMWARE_CREDITS)
194 complete(&gb_tty->credits_complete);
199 static int gb_uart_request_handler(struct gb_operation *op)
201 struct gb_connection *connection = op->connection;
202 struct gb_tty *gb_tty = gb_connection_get_data(connection);
207 case GB_UART_TYPE_RECEIVE_DATA:
208 ret = gb_uart_receive_data_handler(op);
210 case GB_UART_TYPE_SERIAL_STATE:
211 ret = gb_uart_serial_state_handler(op);
213 case GB_UART_TYPE_RECEIVE_CREDITS:
214 ret = gb_uart_receive_credits_handler(op);
217 dev_err(&gb_tty->gbphy_dev->dev,
218 "unsupported unsolicited request: 0x%02x\n", type);
225 static void gb_uart_tx_write_work(struct work_struct *work)
227 struct gb_uart_send_data_request *request;
228 struct gb_tty *gb_tty;
230 unsigned int send_size;
233 gb_tty = container_of(work, struct gb_tty, tx_work);
234 request = gb_tty->buffer;
237 if (gb_tty->close_pending)
240 spin_lock_irqsave(&gb_tty->write_lock, flags);
241 send_size = gb_tty->buffer_payload_max;
242 if (send_size > gb_tty->credits)
243 send_size = gb_tty->credits;
245 send_size = kfifo_out_peek(&gb_tty->write_fifo,
249 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
253 gb_tty->credits -= send_size;
254 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
256 request->size = cpu_to_le16(send_size);
257 ret = gb_operation_sync(gb_tty->connection,
258 GB_UART_TYPE_SEND_DATA,
259 request, sizeof(*request) + send_size,
262 dev_err(&gb_tty->gbphy_dev->dev,
263 "send data error: %d\n", ret);
264 spin_lock_irqsave(&gb_tty->write_lock, flags);
265 gb_tty->credits += send_size;
266 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
267 if (!gb_tty->close_pending)
272 spin_lock_irqsave(&gb_tty->write_lock, flags);
273 ret = kfifo_out(&gb_tty->write_fifo, &request->data[0],
275 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
277 tty_port_tty_wakeup(&gb_tty->port);
281 static int send_line_coding(struct gb_tty *tty)
283 return gb_operation_sync(tty->connection, GB_UART_TYPE_SET_LINE_CODING,
284 &tty->line_coding, sizeof(tty->line_coding),
288 static int send_control(struct gb_tty *gb_tty, u8 control)
290 struct gb_uart_set_control_line_state_request request;
292 request.control = control;
293 return gb_operation_sync(gb_tty->connection,
294 GB_UART_TYPE_SET_CONTROL_LINE_STATE,
295 &request, sizeof(request), NULL, 0);
298 static int send_break(struct gb_tty *gb_tty, u8 state)
300 struct gb_uart_set_break_request request;
302 if ((state != 0) && (state != 1)) {
303 dev_err(&gb_tty->gbphy_dev->dev,
304 "invalid break state of %d\n", state);
308 request.state = state;
309 return gb_operation_sync(gb_tty->connection, GB_UART_TYPE_SEND_BREAK,
310 &request, sizeof(request), NULL, 0);
313 static int gb_uart_wait_for_all_credits(struct gb_tty *gb_tty)
317 if (gb_tty->credits == GB_UART_FIRMWARE_CREDITS)
320 ret = wait_for_completion_timeout(&gb_tty->credits_complete,
321 msecs_to_jiffies(GB_UART_CREDIT_WAIT_TIMEOUT_MSEC));
323 dev_err(&gb_tty->gbphy_dev->dev,
324 "time out waiting for credits\n");
331 static int gb_uart_flush(struct gb_tty *gb_tty, u8 flags)
333 struct gb_uart_serial_flush_request request;
335 request.flags = flags;
336 return gb_operation_sync(gb_tty->connection, GB_UART_TYPE_FLUSH_FIFOS,
337 &request, sizeof(request), NULL, 0);
340 static struct gb_tty *get_gb_by_minor(unsigned int minor)
342 struct gb_tty *gb_tty;
344 mutex_lock(&table_lock);
345 gb_tty = idr_find(&tty_minors, minor);
347 mutex_lock(&gb_tty->mutex);
348 if (gb_tty->disconnected) {
349 mutex_unlock(&gb_tty->mutex);
352 tty_port_get(&gb_tty->port);
353 mutex_unlock(&gb_tty->mutex);
356 mutex_unlock(&table_lock);
360 static int alloc_minor(struct gb_tty *gb_tty)
364 mutex_lock(&table_lock);
365 minor = idr_alloc(&tty_minors, gb_tty, 0, GB_NUM_MINORS, GFP_KERNEL);
366 mutex_unlock(&table_lock);
368 gb_tty->minor = minor;
372 static void release_minor(struct gb_tty *gb_tty)
374 int minor = gb_tty->minor;
376 gb_tty->minor = 0; /* Maybe should use an invalid value instead */
377 mutex_lock(&table_lock);
378 idr_remove(&tty_minors, minor);
379 mutex_unlock(&table_lock);
382 static int gb_tty_install(struct tty_driver *driver, struct tty_struct *tty)
384 struct gb_tty *gb_tty;
387 gb_tty = get_gb_by_minor(tty->index);
391 retval = tty_standard_install(driver, tty);
395 tty->driver_data = gb_tty;
398 tty_port_put(&gb_tty->port);
402 static int gb_tty_open(struct tty_struct *tty, struct file *file)
404 struct gb_tty *gb_tty = tty->driver_data;
406 return tty_port_open(&gb_tty->port, tty, file);
409 static void gb_tty_close(struct tty_struct *tty, struct file *file)
411 struct gb_tty *gb_tty = tty->driver_data;
413 tty_port_close(&gb_tty->port, tty, file);
416 static void gb_tty_cleanup(struct tty_struct *tty)
418 struct gb_tty *gb_tty = tty->driver_data;
420 tty_port_put(&gb_tty->port);
423 static void gb_tty_hangup(struct tty_struct *tty)
425 struct gb_tty *gb_tty = tty->driver_data;
427 tty_port_hangup(&gb_tty->port);
430 static ssize_t gb_tty_write(struct tty_struct *tty, const u8 *buf, size_t count)
432 struct gb_tty *gb_tty = tty->driver_data;
434 count = kfifo_in_spinlocked(&gb_tty->write_fifo, buf, count,
435 &gb_tty->write_lock);
436 if (count && !gb_tty->close_pending)
437 schedule_work(&gb_tty->tx_work);
442 static unsigned int gb_tty_write_room(struct tty_struct *tty)
444 struct gb_tty *gb_tty = tty->driver_data;
448 spin_lock_irqsave(&gb_tty->write_lock, flags);
449 room = kfifo_avail(&gb_tty->write_fifo);
450 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
452 room -= GB_UART_WRITE_ROOM_MARGIN;
459 static unsigned int gb_tty_chars_in_buffer(struct tty_struct *tty)
461 struct gb_tty *gb_tty = tty->driver_data;
465 spin_lock_irqsave(&gb_tty->write_lock, flags);
466 chars = kfifo_len(&gb_tty->write_fifo);
467 if (gb_tty->credits < GB_UART_FIRMWARE_CREDITS)
468 chars += GB_UART_FIRMWARE_CREDITS - gb_tty->credits;
469 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
474 static int gb_tty_break_ctl(struct tty_struct *tty, int state)
476 struct gb_tty *gb_tty = tty->driver_data;
478 return send_break(gb_tty, state ? 1 : 0);
481 static void gb_tty_set_termios(struct tty_struct *tty,
482 const struct ktermios *termios_old)
484 struct gb_uart_set_line_coding_request newline;
485 struct gb_tty *gb_tty = tty->driver_data;
486 struct ktermios *termios = &tty->termios;
487 u8 newctrl = gb_tty->ctrlout;
489 newline.rate = cpu_to_le32(tty_get_baud_rate(tty));
490 newline.format = termios->c_cflag & CSTOPB ?
491 GB_SERIAL_2_STOP_BITS : GB_SERIAL_1_STOP_BITS;
492 newline.parity = termios->c_cflag & PARENB ?
493 (termios->c_cflag & PARODD ? 1 : 2) +
494 (termios->c_cflag & CMSPAR ? 2 : 0) : 0;
496 newline.data_bits = tty_get_char_size(termios->c_cflag);
498 /* FIXME: needs to clear unsupported bits in the termios */
499 gb_tty->clocal = ((termios->c_cflag & CLOCAL) != 0);
501 if (C_BAUD(tty) == B0) {
502 newline.rate = gb_tty->line_coding.rate;
503 newctrl &= ~(GB_UART_CTRL_DTR | GB_UART_CTRL_RTS);
504 } else if (termios_old && (termios_old->c_cflag & CBAUD) == B0) {
505 newctrl |= (GB_UART_CTRL_DTR | GB_UART_CTRL_RTS);
508 if (newctrl != gb_tty->ctrlout) {
509 gb_tty->ctrlout = newctrl;
510 send_control(gb_tty, newctrl);
513 if (C_CRTSCTS(tty) && C_BAUD(tty) != B0)
514 newline.flow_control = GB_SERIAL_AUTO_RTSCTS_EN;
516 newline.flow_control = 0;
518 if (memcmp(&gb_tty->line_coding, &newline, sizeof(newline))) {
519 memcpy(&gb_tty->line_coding, &newline, sizeof(newline));
520 send_line_coding(gb_tty);
524 static int gb_tty_tiocmget(struct tty_struct *tty)
526 struct gb_tty *gb_tty = tty->driver_data;
528 return (gb_tty->ctrlout & GB_UART_CTRL_DTR ? TIOCM_DTR : 0) |
529 (gb_tty->ctrlout & GB_UART_CTRL_RTS ? TIOCM_RTS : 0) |
530 (gb_tty->ctrlin & GB_UART_CTRL_DSR ? TIOCM_DSR : 0) |
531 (gb_tty->ctrlin & GB_UART_CTRL_RI ? TIOCM_RI : 0) |
532 (gb_tty->ctrlin & GB_UART_CTRL_DCD ? TIOCM_CD : 0) |
536 static int gb_tty_tiocmset(struct tty_struct *tty, unsigned int set,
539 struct gb_tty *gb_tty = tty->driver_data;
540 u8 newctrl = gb_tty->ctrlout;
542 set = (set & TIOCM_DTR ? GB_UART_CTRL_DTR : 0) |
543 (set & TIOCM_RTS ? GB_UART_CTRL_RTS : 0);
544 clear = (clear & TIOCM_DTR ? GB_UART_CTRL_DTR : 0) |
545 (clear & TIOCM_RTS ? GB_UART_CTRL_RTS : 0);
547 newctrl = (newctrl & ~clear) | set;
548 if (gb_tty->ctrlout == newctrl)
551 gb_tty->ctrlout = newctrl;
552 return send_control(gb_tty, newctrl);
555 static void gb_tty_throttle(struct tty_struct *tty)
557 struct gb_tty *gb_tty = tty->driver_data;
558 unsigned char stop_char;
562 stop_char = STOP_CHAR(tty);
563 retval = gb_tty_write(tty, &stop_char, 1);
568 if (tty->termios.c_cflag & CRTSCTS) {
569 gb_tty->ctrlout &= ~GB_UART_CTRL_RTS;
570 retval = send_control(gb_tty, gb_tty->ctrlout);
574 static void gb_tty_unthrottle(struct tty_struct *tty)
576 struct gb_tty *gb_tty = tty->driver_data;
577 unsigned char start_char;
581 start_char = START_CHAR(tty);
582 retval = gb_tty_write(tty, &start_char, 1);
587 if (tty->termios.c_cflag & CRTSCTS) {
588 gb_tty->ctrlout |= GB_UART_CTRL_RTS;
589 retval = send_control(gb_tty, gb_tty->ctrlout);
593 static int get_serial_info(struct tty_struct *tty,
594 struct serial_struct *ss)
596 struct gb_tty *gb_tty = tty->driver_data;
598 ss->line = gb_tty->minor;
599 mutex_lock(&gb_tty->port.mutex);
600 ss->close_delay = jiffies_to_msecs(gb_tty->port.close_delay) / 10;
602 gb_tty->port.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
603 ASYNC_CLOSING_WAIT_NONE :
604 jiffies_to_msecs(gb_tty->port.closing_wait) / 10;
605 mutex_unlock(&gb_tty->port.mutex);
610 static int set_serial_info(struct tty_struct *tty,
611 struct serial_struct *ss)
613 struct gb_tty *gb_tty = tty->driver_data;
614 unsigned int closing_wait;
615 unsigned int close_delay;
618 close_delay = msecs_to_jiffies(ss->close_delay * 10);
619 closing_wait = ss->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
620 ASYNC_CLOSING_WAIT_NONE :
621 msecs_to_jiffies(ss->closing_wait * 10);
623 mutex_lock(&gb_tty->port.mutex);
624 if (!capable(CAP_SYS_ADMIN)) {
625 if ((close_delay != gb_tty->port.close_delay) ||
626 (closing_wait != gb_tty->port.closing_wait))
629 gb_tty->port.close_delay = close_delay;
630 gb_tty->port.closing_wait = closing_wait;
632 mutex_unlock(&gb_tty->port.mutex);
636 static int wait_serial_change(struct gb_tty *gb_tty, unsigned long arg)
639 DECLARE_WAITQUEUE(wait, current);
640 struct async_icount old;
641 struct async_icount new;
643 if (!(arg & (TIOCM_DSR | TIOCM_RI | TIOCM_CD)))
647 spin_lock_irq(&gb_tty->read_lock);
648 old = gb_tty->oldcount;
649 new = gb_tty->iocount;
650 gb_tty->oldcount = new;
651 spin_unlock_irq(&gb_tty->read_lock);
653 if ((arg & TIOCM_DSR) && (old.dsr != new.dsr))
655 if ((arg & TIOCM_CD) && (old.dcd != new.dcd))
657 if ((arg & TIOCM_RI) && (old.rng != new.rng))
660 add_wait_queue(&gb_tty->wioctl, &wait);
661 set_current_state(TASK_INTERRUPTIBLE);
663 remove_wait_queue(&gb_tty->wioctl, &wait);
664 if (gb_tty->disconnected) {
668 } else if (signal_pending(current)) {
669 retval = -ERESTARTSYS;
676 static int gb_tty_get_icount(struct tty_struct *tty,
677 struct serial_icounter_struct *icount)
679 struct gb_tty *gb_tty = tty->driver_data;
681 icount->dsr = gb_tty->iocount.dsr;
682 icount->rng = gb_tty->iocount.rng;
683 icount->dcd = gb_tty->iocount.dcd;
684 icount->frame = gb_tty->iocount.frame;
685 icount->overrun = gb_tty->iocount.overrun;
686 icount->parity = gb_tty->iocount.parity;
687 icount->brk = gb_tty->iocount.brk;
692 static int gb_tty_ioctl(struct tty_struct *tty, unsigned int cmd,
695 struct gb_tty *gb_tty = tty->driver_data;
699 return wait_serial_change(gb_tty, arg);
705 static void gb_tty_dtr_rts(struct tty_port *port, bool active)
707 struct gb_tty *gb_tty;
710 gb_tty = container_of(port, struct gb_tty, port);
711 newctrl = gb_tty->ctrlout;
714 newctrl |= (GB_UART_CTRL_DTR | GB_UART_CTRL_RTS);
716 newctrl &= ~(GB_UART_CTRL_DTR | GB_UART_CTRL_RTS);
718 gb_tty->ctrlout = newctrl;
719 send_control(gb_tty, newctrl);
722 static int gb_tty_port_activate(struct tty_port *port,
723 struct tty_struct *tty)
725 struct gb_tty *gb_tty;
727 gb_tty = container_of(port, struct gb_tty, port);
729 return gbphy_runtime_get_sync(gb_tty->gbphy_dev);
732 static void gb_tty_port_shutdown(struct tty_port *port)
734 struct gb_tty *gb_tty;
738 gb_tty = container_of(port, struct gb_tty, port);
740 gb_tty->close_pending = true;
742 cancel_work_sync(&gb_tty->tx_work);
744 spin_lock_irqsave(&gb_tty->write_lock, flags);
745 kfifo_reset_out(&gb_tty->write_fifo);
746 spin_unlock_irqrestore(&gb_tty->write_lock, flags);
748 if (gb_tty->credits == GB_UART_FIRMWARE_CREDITS)
751 ret = gb_uart_flush(gb_tty, GB_SERIAL_FLAG_FLUSH_TRANSMITTER);
753 dev_err(&gb_tty->gbphy_dev->dev,
754 "error flushing transmitter: %d\n", ret);
757 gb_uart_wait_for_all_credits(gb_tty);
760 gb_tty->close_pending = false;
762 gbphy_runtime_put_autosuspend(gb_tty->gbphy_dev);
765 static void gb_tty_port_destruct(struct tty_port *port)
767 struct gb_tty *gb_tty = container_of(port, struct gb_tty, port);
769 if (gb_tty->minor != GB_NUM_MINORS)
770 release_minor(gb_tty);
771 kfifo_free(&gb_tty->write_fifo);
772 kfree(gb_tty->buffer);
776 static const struct tty_operations gb_ops = {
777 .install = gb_tty_install,
779 .close = gb_tty_close,
780 .cleanup = gb_tty_cleanup,
781 .hangup = gb_tty_hangup,
782 .write = gb_tty_write,
783 .write_room = gb_tty_write_room,
784 .ioctl = gb_tty_ioctl,
785 .throttle = gb_tty_throttle,
786 .unthrottle = gb_tty_unthrottle,
787 .chars_in_buffer = gb_tty_chars_in_buffer,
788 .break_ctl = gb_tty_break_ctl,
789 .set_termios = gb_tty_set_termios,
790 .tiocmget = gb_tty_tiocmget,
791 .tiocmset = gb_tty_tiocmset,
792 .get_icount = gb_tty_get_icount,
793 .set_serial = set_serial_info,
794 .get_serial = get_serial_info,
797 static const struct tty_port_operations gb_port_ops = {
798 .dtr_rts = gb_tty_dtr_rts,
799 .activate = gb_tty_port_activate,
800 .shutdown = gb_tty_port_shutdown,
801 .destruct = gb_tty_port_destruct,
804 static int gb_uart_probe(struct gbphy_device *gbphy_dev,
805 const struct gbphy_device_id *id)
807 struct gb_connection *connection;
809 struct gb_tty *gb_tty;
810 struct device *tty_dev;
814 connection = gb_connection_create(gbphy_dev->bundle,
815 le16_to_cpu(gbphy_dev->cport_desc->id),
816 gb_uart_request_handler);
817 if (IS_ERR(connection))
818 return PTR_ERR(connection);
820 max_payload = gb_operation_get_payload_size_max(connection);
821 if (max_payload < sizeof(struct gb_uart_send_data_request)) {
823 goto exit_connection_destroy;
826 gb_tty = kzalloc(sizeof(*gb_tty), GFP_KERNEL);
829 goto exit_connection_destroy;
832 tty_port_init(&gb_tty->port);
833 gb_tty->port.ops = &gb_port_ops;
834 gb_tty->minor = GB_NUM_MINORS;
836 gb_tty->buffer_payload_max = max_payload -
837 sizeof(struct gb_uart_send_data_request);
839 gb_tty->buffer = kzalloc(gb_tty->buffer_payload_max, GFP_KERNEL);
840 if (!gb_tty->buffer) {
845 INIT_WORK(&gb_tty->tx_work, gb_uart_tx_write_work);
847 retval = kfifo_alloc(&gb_tty->write_fifo, GB_UART_WRITE_FIFO_SIZE,
852 gb_tty->credits = GB_UART_FIRMWARE_CREDITS;
853 init_completion(&gb_tty->credits_complete);
855 minor = alloc_minor(gb_tty);
857 if (minor == -ENOSPC) {
858 dev_err(&gbphy_dev->dev,
859 "no more free minor numbers\n");
867 gb_tty->minor = minor;
868 spin_lock_init(&gb_tty->write_lock);
869 spin_lock_init(&gb_tty->read_lock);
870 init_waitqueue_head(&gb_tty->wioctl);
871 mutex_init(&gb_tty->mutex);
873 gb_tty->connection = connection;
874 gb_tty->gbphy_dev = gbphy_dev;
875 gb_connection_set_data(connection, gb_tty);
876 gb_gbphy_set_data(gbphy_dev, gb_tty);
878 retval = gb_connection_enable_tx(connection);
882 send_control(gb_tty, gb_tty->ctrlout);
884 /* initialize the uart to be 9600n81 */
885 gb_tty->line_coding.rate = cpu_to_le32(9600);
886 gb_tty->line_coding.format = GB_SERIAL_1_STOP_BITS;
887 gb_tty->line_coding.parity = GB_SERIAL_NO_PARITY;
888 gb_tty->line_coding.data_bits = 8;
889 send_line_coding(gb_tty);
891 retval = gb_connection_enable(connection);
893 goto exit_connection_disable;
895 tty_dev = tty_port_register_device(&gb_tty->port, gb_tty_driver, minor,
897 if (IS_ERR(tty_dev)) {
898 retval = PTR_ERR(tty_dev);
899 goto exit_connection_disable;
902 gbphy_runtime_put_autosuspend(gbphy_dev);
905 exit_connection_disable:
906 gb_connection_disable(connection);
908 tty_port_put(&gb_tty->port);
909 exit_connection_destroy:
910 gb_connection_destroy(connection);
915 static void gb_uart_remove(struct gbphy_device *gbphy_dev)
917 struct gb_tty *gb_tty = gb_gbphy_get_data(gbphy_dev);
918 struct gb_connection *connection = gb_tty->connection;
919 struct tty_struct *tty;
922 ret = gbphy_runtime_get_sync(gbphy_dev);
924 gbphy_runtime_get_noresume(gbphy_dev);
926 mutex_lock(&gb_tty->mutex);
927 gb_tty->disconnected = true;
929 wake_up_all(&gb_tty->wioctl);
930 mutex_unlock(&gb_tty->mutex);
932 tty = tty_port_tty_get(&gb_tty->port);
938 gb_connection_disable_rx(connection);
939 tty_unregister_device(gb_tty_driver, gb_tty->minor);
941 gb_connection_disable(connection);
942 gb_connection_destroy(connection);
944 tty_port_put(&gb_tty->port);
947 static int gb_tty_init(void)
951 gb_tty_driver = tty_alloc_driver(GB_NUM_MINORS, 0);
952 if (IS_ERR(gb_tty_driver)) {
953 pr_err("Can not allocate tty driver\n");
955 goto fail_unregister_dev;
958 gb_tty_driver->driver_name = "gb";
959 gb_tty_driver->name = GB_NAME;
960 gb_tty_driver->major = 0;
961 gb_tty_driver->minor_start = 0;
962 gb_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
963 gb_tty_driver->subtype = SERIAL_TYPE_NORMAL;
964 gb_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
965 gb_tty_driver->init_termios = tty_std_termios;
966 gb_tty_driver->init_termios.c_cflag = B9600 | CS8 |
967 CREAD | HUPCL | CLOCAL;
968 tty_set_operations(gb_tty_driver, &gb_ops);
970 retval = tty_register_driver(gb_tty_driver);
972 pr_err("Can not register tty driver: %d\n", retval);
973 goto fail_put_gb_tty;
979 tty_driver_kref_put(gb_tty_driver);
984 static void gb_tty_exit(void)
986 tty_unregister_driver(gb_tty_driver);
987 tty_driver_kref_put(gb_tty_driver);
988 idr_destroy(&tty_minors);
991 static const struct gbphy_device_id gb_uart_id_table[] = {
992 { GBPHY_PROTOCOL(GREYBUS_PROTOCOL_UART) },
995 MODULE_DEVICE_TABLE(gbphy, gb_uart_id_table);
997 static struct gbphy_driver uart_driver = {
999 .probe = gb_uart_probe,
1000 .remove = gb_uart_remove,
1001 .id_table = gb_uart_id_table,
1004 static int gb_uart_driver_init(void)
1008 ret = gb_tty_init();
1012 ret = gb_gbphy_register(&uart_driver);
1020 module_init(gb_uart_driver_init);
1022 static void gb_uart_driver_exit(void)
1024 gb_gbphy_deregister(&uart_driver);
1028 module_exit(gb_uart_driver_exit);
1029 MODULE_DESCRIPTION("UART driver for the Greybus 'generic' UART module");
1030 MODULE_LICENSE("GPL v2");