1 // SPDX-License-Identifier: GPL-2.0
3 * xhci-dbgtty.c - tty glue for xHCI debug capability
5 * Copyright (C) 2017 Intel Corporation
7 * Author: Lu Baolu <baolu.lu@linux.intel.com>
10 #include <linux/slab.h>
11 #include <linux/tty.h>
12 #include <linux/tty_flip.h>
13 #include <linux/idr.h>
16 #include "xhci-dbgcap.h"
18 static struct tty_driver *dbc_tty_driver;
19 static struct idr dbc_tty_minors;
20 static DEFINE_MUTEX(dbc_tty_minors_lock);
22 static inline struct dbc_port *dbc_to_port(struct xhci_dbc *dbc)
28 dbc_send_packet(struct dbc_port *port, char *packet, unsigned int size)
32 len = kfifo_len(&port->write_fifo);
36 size = kfifo_out(&port->write_fifo, packet, size);
40 static int dbc_start_tx(struct dbc_port *port)
41 __releases(&port->port_lock)
42 __acquires(&port->port_lock)
45 struct dbc_request *req;
47 bool do_tty_wake = false;
48 struct list_head *pool = &port->write_pool;
50 while (!list_empty(pool)) {
51 req = list_entry(pool->next, struct dbc_request, list_pool);
52 len = dbc_send_packet(port, req->buf, DBC_MAX_PACKET);
58 list_del(&req->list_pool);
60 spin_unlock(&port->port_lock);
61 status = dbc_ep_queue(req);
62 spin_lock(&port->port_lock);
65 list_add(&req->list_pool, pool);
70 if (do_tty_wake && port->port.tty)
71 tty_wakeup(port->port.tty);
76 static void dbc_start_rx(struct dbc_port *port)
77 __releases(&port->port_lock)
78 __acquires(&port->port_lock)
80 struct dbc_request *req;
82 struct list_head *pool = &port->read_pool;
84 while (!list_empty(pool)) {
88 req = list_entry(pool->next, struct dbc_request, list_pool);
89 list_del(&req->list_pool);
90 req->length = DBC_MAX_PACKET;
92 spin_unlock(&port->port_lock);
93 status = dbc_ep_queue(req);
94 spin_lock(&port->port_lock);
97 list_add(&req->list_pool, pool);
104 dbc_read_complete(struct xhci_dbc *dbc, struct dbc_request *req)
107 struct dbc_port *port = dbc_to_port(dbc);
109 spin_lock_irqsave(&port->port_lock, flags);
110 list_add_tail(&req->list_pool, &port->read_queue);
111 tasklet_schedule(&port->push);
112 spin_unlock_irqrestore(&port->port_lock, flags);
115 static void dbc_write_complete(struct xhci_dbc *dbc, struct dbc_request *req)
118 struct dbc_port *port = dbc_to_port(dbc);
120 spin_lock_irqsave(&port->port_lock, flags);
121 list_add(&req->list_pool, &port->write_pool);
122 switch (req->status) {
129 dev_warn(dbc->dev, "unexpected write complete status %d\n",
133 spin_unlock_irqrestore(&port->port_lock, flags);
136 static void xhci_dbc_free_req(struct dbc_request *req)
139 dbc_free_request(req);
143 xhci_dbc_alloc_requests(struct xhci_dbc *dbc, unsigned int direction,
144 struct list_head *head,
145 void (*fn)(struct xhci_dbc *, struct dbc_request *))
148 struct dbc_request *req;
150 for (i = 0; i < DBC_QUEUE_SIZE; i++) {
151 req = dbc_alloc_request(dbc, direction, GFP_KERNEL);
155 req->length = DBC_MAX_PACKET;
156 req->buf = kmalloc(req->length, GFP_KERNEL);
158 dbc_free_request(req);
163 list_add_tail(&req->list_pool, head);
166 return list_empty(head) ? -ENOMEM : 0;
170 xhci_dbc_free_requests(struct list_head *head)
172 struct dbc_request *req;
174 while (!list_empty(head)) {
175 req = list_entry(head->next, struct dbc_request, list_pool);
176 list_del(&req->list_pool);
177 xhci_dbc_free_req(req);
181 static int dbc_tty_install(struct tty_driver *driver, struct tty_struct *tty)
183 struct dbc_port *port;
185 mutex_lock(&dbc_tty_minors_lock);
186 port = idr_find(&dbc_tty_minors, tty->index);
187 mutex_unlock(&dbc_tty_minors_lock);
192 tty->driver_data = port;
194 return tty_port_install(&port->port, driver, tty);
197 static int dbc_tty_open(struct tty_struct *tty, struct file *file)
199 struct dbc_port *port = tty->driver_data;
201 return tty_port_open(&port->port, tty, file);
204 static void dbc_tty_close(struct tty_struct *tty, struct file *file)
206 struct dbc_port *port = tty->driver_data;
208 tty_port_close(&port->port, tty, file);
211 static ssize_t dbc_tty_write(struct tty_struct *tty, const u8 *buf,
214 struct dbc_port *port = tty->driver_data;
217 spin_lock_irqsave(&port->port_lock, flags);
219 count = kfifo_in(&port->write_fifo, buf, count);
221 spin_unlock_irqrestore(&port->port_lock, flags);
226 static int dbc_tty_put_char(struct tty_struct *tty, u8 ch)
228 struct dbc_port *port = tty->driver_data;
232 spin_lock_irqsave(&port->port_lock, flags);
233 status = kfifo_put(&port->write_fifo, ch);
234 spin_unlock_irqrestore(&port->port_lock, flags);
239 static void dbc_tty_flush_chars(struct tty_struct *tty)
241 struct dbc_port *port = tty->driver_data;
244 spin_lock_irqsave(&port->port_lock, flags);
246 spin_unlock_irqrestore(&port->port_lock, flags);
249 static unsigned int dbc_tty_write_room(struct tty_struct *tty)
251 struct dbc_port *port = tty->driver_data;
255 spin_lock_irqsave(&port->port_lock, flags);
256 room = kfifo_avail(&port->write_fifo);
257 spin_unlock_irqrestore(&port->port_lock, flags);
262 static unsigned int dbc_tty_chars_in_buffer(struct tty_struct *tty)
264 struct dbc_port *port = tty->driver_data;
268 spin_lock_irqsave(&port->port_lock, flags);
269 chars = kfifo_len(&port->write_fifo);
270 spin_unlock_irqrestore(&port->port_lock, flags);
275 static void dbc_tty_unthrottle(struct tty_struct *tty)
277 struct dbc_port *port = tty->driver_data;
280 spin_lock_irqsave(&port->port_lock, flags);
281 tasklet_schedule(&port->push);
282 spin_unlock_irqrestore(&port->port_lock, flags);
285 static const struct tty_operations dbc_tty_ops = {
286 .install = dbc_tty_install,
287 .open = dbc_tty_open,
288 .close = dbc_tty_close,
289 .write = dbc_tty_write,
290 .put_char = dbc_tty_put_char,
291 .flush_chars = dbc_tty_flush_chars,
292 .write_room = dbc_tty_write_room,
293 .chars_in_buffer = dbc_tty_chars_in_buffer,
294 .unthrottle = dbc_tty_unthrottle,
297 static void dbc_rx_push(struct tasklet_struct *t)
299 struct dbc_request *req;
300 struct tty_struct *tty;
302 bool do_push = false;
303 bool disconnect = false;
304 struct dbc_port *port = from_tasklet(port, t, push);
305 struct list_head *queue = &port->read_queue;
307 spin_lock_irqsave(&port->port_lock, flags);
308 tty = port->port.tty;
309 while (!list_empty(queue)) {
310 req = list_first_entry(queue, struct dbc_request, list_pool);
312 if (tty && tty_throttled(tty))
315 switch (req->status) {
322 pr_warn("ttyDBC0: unexpected RX status %d\n",
328 char *packet = req->buf;
329 unsigned int n, size = req->actual;
338 count = tty_insert_flip_string(&port->port, packet,
343 port->n_read += count;
349 list_move(&req->list_pool, &port->read_pool);
353 tty_flip_buffer_push(&port->port);
355 if (!list_empty(queue) && tty) {
356 if (!tty_throttled(tty)) {
358 tasklet_schedule(&port->push);
360 pr_warn("ttyDBC0: RX not scheduled?\n");
367 spin_unlock_irqrestore(&port->port_lock, flags);
370 static int dbc_port_activate(struct tty_port *_port, struct tty_struct *tty)
373 struct dbc_port *port = container_of(_port, struct dbc_port, port);
375 spin_lock_irqsave(&port->port_lock, flags);
377 spin_unlock_irqrestore(&port->port_lock, flags);
382 static const struct tty_port_operations dbc_port_ops = {
383 .activate = dbc_port_activate,
387 xhci_dbc_tty_init_port(struct xhci_dbc *dbc, struct dbc_port *port)
389 tty_port_init(&port->port);
390 spin_lock_init(&port->port_lock);
391 tasklet_setup(&port->push, dbc_rx_push);
392 INIT_LIST_HEAD(&port->read_pool);
393 INIT_LIST_HEAD(&port->read_queue);
394 INIT_LIST_HEAD(&port->write_pool);
396 port->port.ops = &dbc_port_ops;
401 xhci_dbc_tty_exit_port(struct dbc_port *port)
403 tasklet_kill(&port->push);
404 tty_port_destroy(&port->port);
407 static int xhci_dbc_tty_register_device(struct xhci_dbc *dbc)
410 struct device *tty_dev;
411 struct dbc_port *port = dbc_to_port(dbc);
413 if (port->registered)
416 xhci_dbc_tty_init_port(dbc, port);
418 mutex_lock(&dbc_tty_minors_lock);
419 port->minor = idr_alloc(&dbc_tty_minors, port, 0, 64, GFP_KERNEL);
420 mutex_unlock(&dbc_tty_minors_lock);
422 if (port->minor < 0) {
427 ret = kfifo_alloc(&port->write_fifo, DBC_WRITE_BUF_SIZE, GFP_KERNEL);
431 ret = xhci_dbc_alloc_requests(dbc, BULK_IN, &port->read_pool,
436 ret = xhci_dbc_alloc_requests(dbc, BULK_OUT, &port->write_pool,
439 goto err_free_requests;
441 tty_dev = tty_port_register_device(&port->port,
442 dbc_tty_driver, port->minor, NULL);
443 if (IS_ERR(tty_dev)) {
444 ret = PTR_ERR(tty_dev);
445 goto err_free_requests;
448 port->registered = true;
453 xhci_dbc_free_requests(&port->read_pool);
454 xhci_dbc_free_requests(&port->write_pool);
456 kfifo_free(&port->write_fifo);
458 idr_remove(&dbc_tty_minors, port->minor);
460 xhci_dbc_tty_exit_port(port);
462 dev_err(dbc->dev, "can't register tty port, err %d\n", ret);
467 static void xhci_dbc_tty_unregister_device(struct xhci_dbc *dbc)
469 struct dbc_port *port = dbc_to_port(dbc);
471 if (!port->registered)
473 tty_unregister_device(dbc_tty_driver, port->minor);
474 xhci_dbc_tty_exit_port(port);
475 port->registered = false;
477 mutex_lock(&dbc_tty_minors_lock);
478 idr_remove(&dbc_tty_minors, port->minor);
479 mutex_unlock(&dbc_tty_minors_lock);
481 kfifo_free(&port->write_fifo);
482 xhci_dbc_free_requests(&port->read_pool);
483 xhci_dbc_free_requests(&port->read_queue);
484 xhci_dbc_free_requests(&port->write_pool);
487 static const struct dbc_driver dbc_driver = {
488 .configure = xhci_dbc_tty_register_device,
489 .disconnect = xhci_dbc_tty_unregister_device,
492 int xhci_dbc_tty_probe(struct device *dev, void __iomem *base, struct xhci_hcd *xhci)
494 struct xhci_dbc *dbc;
495 struct dbc_port *port;
501 port = kzalloc(sizeof(*port), GFP_KERNEL);
505 dbc = xhci_alloc_dbc(dev, base, &dbc_driver);
514 /* get rid of xhci once this is a real driver binding to a device */
525 * undo what probe did, assume dbc is stopped already.
526 * we also assume tty_unregister_device() is called before this
528 void xhci_dbc_tty_remove(struct xhci_dbc *dbc)
530 struct dbc_port *port = dbc_to_port(dbc);
532 xhci_dbc_remove(dbc);
536 int dbc_tty_init(void)
540 idr_init(&dbc_tty_minors);
542 dbc_tty_driver = tty_alloc_driver(64, TTY_DRIVER_REAL_RAW |
543 TTY_DRIVER_DYNAMIC_DEV);
544 if (IS_ERR(dbc_tty_driver)) {
545 idr_destroy(&dbc_tty_minors);
546 return PTR_ERR(dbc_tty_driver);
549 dbc_tty_driver->driver_name = "dbc_serial";
550 dbc_tty_driver->name = "ttyDBC";
552 dbc_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
553 dbc_tty_driver->subtype = SERIAL_TYPE_NORMAL;
554 dbc_tty_driver->init_termios = tty_std_termios;
555 dbc_tty_driver->init_termios.c_cflag =
556 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
557 dbc_tty_driver->init_termios.c_ispeed = 9600;
558 dbc_tty_driver->init_termios.c_ospeed = 9600;
560 tty_set_operations(dbc_tty_driver, &dbc_tty_ops);
562 ret = tty_register_driver(dbc_tty_driver);
564 pr_err("Can't register dbc tty driver\n");
565 tty_driver_kref_put(dbc_tty_driver);
566 idr_destroy(&dbc_tty_minors);
572 void dbc_tty_exit(void)
574 if (dbc_tty_driver) {
575 tty_unregister_driver(dbc_tty_driver);
576 tty_driver_kref_put(dbc_tty_driver);
577 dbc_tty_driver = NULL;
580 idr_destroy(&dbc_tty_minors);