GNU Linux-libre 4.19.314-gnu1
[releases.git] / drivers / tty / vcc.c
1 /* vcc.c: sun4v virtual channel concentrator
2  *
3  * Copyright (C) 2017 Oracle. All rights reserved.
4  */
5
6 #include <linux/delay.h>
7 #include <linux/interrupt.h>
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/sysfs.h>
11 #include <linux/tty.h>
12 #include <linux/tty_flip.h>
13 #include <asm/vio.h>
14 #include <asm/ldc.h>
15
16 #define DRV_MODULE_NAME         "vcc"
17 #define DRV_MODULE_VERSION      "1.1"
18 #define DRV_MODULE_RELDATE      "July 1, 2017"
19
20 static char version[] =
21         DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
22
23 MODULE_DESCRIPTION("Sun LDOM virtual console concentrator driver");
24 MODULE_LICENSE("GPL");
25 MODULE_VERSION(DRV_MODULE_VERSION);
26
27 struct vcc_port {
28         struct vio_driver_state vio;
29
30         spinlock_t lock;
31         char *domain;
32         struct tty_struct *tty; /* only populated while dev is open */
33         unsigned long index;    /* index into the vcc_table */
34
35         u64 refcnt;
36         bool excl_locked;
37
38         bool removed;
39
40         /* This buffer is required to support the tty write_room interface
41          * and guarantee that any characters that the driver accepts will
42          * be eventually sent, either immediately or later.
43          */
44         int chars_in_buffer;
45         struct vio_vcc buffer;
46
47         struct timer_list rx_timer;
48         struct timer_list tx_timer;
49 };
50
51 /* Microseconds that thread will delay waiting for a vcc port ref */
52 #define VCC_REF_DELAY           100
53
54 #define VCC_MAX_PORTS           1024
55 #define VCC_MINOR_START         0       /* must be zero */
56 #define VCC_BUFF_LEN            VIO_VCC_MTU_SIZE
57
58 #define VCC_CTL_BREAK           -1
59 #define VCC_CTL_HUP             -2
60
61 static const char vcc_driver_name[] = "vcc";
62 static const char vcc_device_node[] = "vcc";
63 static struct tty_driver *vcc_tty_driver;
64
65 static struct vcc_port *vcc_table[VCC_MAX_PORTS];
66 static DEFINE_SPINLOCK(vcc_table_lock);
67
68 int vcc_dbg;
69 int vcc_dbg_ldc;
70 int vcc_dbg_vio;
71
72 module_param(vcc_dbg, uint, 0664);
73 module_param(vcc_dbg_ldc, uint, 0664);
74 module_param(vcc_dbg_vio, uint, 0664);
75
76 #define VCC_DBG_DRV     0x1
77 #define VCC_DBG_LDC     0x2
78 #define VCC_DBG_PKT     0x4
79
80 #define vccdbg(f, a...)                                         \
81         do {                                                    \
82                 if (vcc_dbg & VCC_DBG_DRV)                      \
83                         pr_info(f, ## a);                       \
84         } while (0)                                             \
85
86 #define vccdbgl(l)                                              \
87         do {                                                    \
88                 if (vcc_dbg & VCC_DBG_LDC)                      \
89                         ldc_print(l);                           \
90         } while (0)                                             \
91
92 #define vccdbgp(pkt)                                            \
93         do {                                                    \
94                 if (vcc_dbg & VCC_DBG_PKT) {                    \
95                         int i;                                  \
96                         for (i = 0; i < pkt.tag.stype; i++)     \
97                                 pr_info("[%c]", pkt.data[i]);   \
98                 }                                               \
99         } while (0)                                             \
100
101 /* Note: Be careful when adding flags to this line discipline.  Don't
102  * add anything that will cause echoing or we'll go into recursive
103  * loop echoing chars back and forth with the console drivers.
104  */
105 static const struct ktermios vcc_tty_termios = {
106         .c_iflag = IGNBRK | IGNPAR,
107         .c_oflag = OPOST,
108         .c_cflag = B38400 | CS8 | CREAD | HUPCL,
109         .c_cc = INIT_C_CC,
110         .c_ispeed = 38400,
111         .c_ospeed = 38400
112 };
113
114 /**
115  * vcc_table_add() - Add VCC port to the VCC table
116  * @port: pointer to the VCC port
117  *
118  * Return: index of the port in the VCC table on success,
119  *         -1 on failure
120  */
121 static int vcc_table_add(struct vcc_port *port)
122 {
123         unsigned long flags;
124         int i;
125
126         spin_lock_irqsave(&vcc_table_lock, flags);
127         for (i = VCC_MINOR_START; i < VCC_MAX_PORTS; i++) {
128                 if (!vcc_table[i]) {
129                         vcc_table[i] = port;
130                         break;
131                 }
132         }
133         spin_unlock_irqrestore(&vcc_table_lock, flags);
134
135         if (i < VCC_MAX_PORTS)
136                 return i;
137         else
138                 return -1;
139 }
140
141 /**
142  * vcc_table_remove() - Removes a VCC port from the VCC table
143  * @index: Index into the VCC table
144  */
145 static void vcc_table_remove(unsigned long index)
146 {
147         unsigned long flags;
148
149         if (WARN_ON(index >= VCC_MAX_PORTS))
150                 return;
151
152         spin_lock_irqsave(&vcc_table_lock, flags);
153         vcc_table[index] = NULL;
154         spin_unlock_irqrestore(&vcc_table_lock, flags);
155 }
156
157 /**
158  * vcc_get() - Gets a reference to VCC port
159  * @index: Index into the VCC table
160  * @excl: Indicates if an exclusive access is requested
161  *
162  * Return: reference to the VCC port, if found
163  *         NULL, if port not found
164  */
165 static struct vcc_port *vcc_get(unsigned long index, bool excl)
166 {
167         struct vcc_port *port;
168         unsigned long flags;
169
170 try_again:
171         spin_lock_irqsave(&vcc_table_lock, flags);
172
173         port = vcc_table[index];
174         if (!port) {
175                 spin_unlock_irqrestore(&vcc_table_lock, flags);
176                 return NULL;
177         }
178
179         if (!excl) {
180                 if (port->excl_locked) {
181                         spin_unlock_irqrestore(&vcc_table_lock, flags);
182                         udelay(VCC_REF_DELAY);
183                         goto try_again;
184                 }
185                 port->refcnt++;
186                 spin_unlock_irqrestore(&vcc_table_lock, flags);
187                 return port;
188         }
189
190         if (port->refcnt) {
191                 spin_unlock_irqrestore(&vcc_table_lock, flags);
192                 /* Threads wanting exclusive access will wait half the time,
193                  * probably giving them higher priority in the case of
194                  * multiple waiters.
195                  */
196                 udelay(VCC_REF_DELAY/2);
197                 goto try_again;
198         }
199
200         port->refcnt++;
201         port->excl_locked = true;
202         spin_unlock_irqrestore(&vcc_table_lock, flags);
203
204         return port;
205 }
206
207 /**
208  * vcc_put() - Returns a reference to VCC port
209  * @port: pointer to VCC port
210  * @excl: Indicates if the returned reference is an exclusive reference
211  *
212  * Note: It's the caller's responsibility to ensure the correct value
213  *       for the excl flag
214  */
215 static void vcc_put(struct vcc_port *port, bool excl)
216 {
217         unsigned long flags;
218
219         if (!port)
220                 return;
221
222         spin_lock_irqsave(&vcc_table_lock, flags);
223
224         /* check if caller attempted to put with the wrong flags */
225         if (WARN_ON((excl && !port->excl_locked) ||
226                     (!excl && port->excl_locked)))
227                 goto done;
228
229         port->refcnt--;
230
231         if (excl)
232                 port->excl_locked = false;
233
234 done:
235         spin_unlock_irqrestore(&vcc_table_lock, flags);
236 }
237
238 /**
239  * vcc_get_ne() - Get a non-exclusive reference to VCC port
240  * @index: Index into the VCC table
241  *
242  * Gets a non-exclusive reference to VCC port, if it's not removed
243  *
244  * Return: pointer to the VCC port, if found
245  *         NULL, if port not found
246  */
247 static struct vcc_port *vcc_get_ne(unsigned long index)
248 {
249         struct vcc_port *port;
250
251         port = vcc_get(index, false);
252
253         if (port && port->removed) {
254                 vcc_put(port, false);
255                 return NULL;
256         }
257
258         return port;
259 }
260
261 static void vcc_kick_rx(struct vcc_port *port)
262 {
263         struct vio_driver_state *vio = &port->vio;
264
265         assert_spin_locked(&port->lock);
266
267         if (!timer_pending(&port->rx_timer) && !port->removed) {
268                 disable_irq_nosync(vio->vdev->rx_irq);
269                 port->rx_timer.expires = (jiffies + 1);
270                 add_timer(&port->rx_timer);
271         }
272 }
273
274 static void vcc_kick_tx(struct vcc_port *port)
275 {
276         assert_spin_locked(&port->lock);
277
278         if (!timer_pending(&port->tx_timer) && !port->removed) {
279                 port->tx_timer.expires = (jiffies + 1);
280                 add_timer(&port->tx_timer);
281         }
282 }
283
284 static int vcc_rx_check(struct tty_struct *tty, int size)
285 {
286         if (WARN_ON(!tty || !tty->port))
287                 return 1;
288
289         /* tty_buffer_request_room won't sleep because it uses
290          * GFP_ATOMIC flag to allocate buffer
291          */
292         if (test_bit(TTY_THROTTLED, &tty->flags) ||
293             (tty_buffer_request_room(tty->port, VCC_BUFF_LEN) < VCC_BUFF_LEN))
294                 return 0;
295
296         return 1;
297 }
298
299 static int vcc_rx(struct tty_struct *tty, char *buf, int size)
300 {
301         int len = 0;
302
303         if (WARN_ON(!tty || !tty->port))
304                 return len;
305
306         len = tty_insert_flip_string(tty->port, buf, size);
307         if (len)
308                 tty_flip_buffer_push(tty->port);
309
310         return len;
311 }
312
313 static int vcc_ldc_read(struct vcc_port *port)
314 {
315         struct vio_driver_state *vio = &port->vio;
316         struct tty_struct *tty;
317         struct vio_vcc pkt;
318         int rv = 0;
319
320         tty = port->tty;
321         if (!tty) {
322                 rv = ldc_rx_reset(vio->lp);
323                 vccdbg("VCC: reset rx q: rv=%d\n", rv);
324                 goto done;
325         }
326
327         /* Read as long as LDC has incoming data. */
328         while (1) {
329                 if (!vcc_rx_check(tty, VIO_VCC_MTU_SIZE)) {
330                         vcc_kick_rx(port);
331                         break;
332                 }
333
334                 vccdbgl(vio->lp);
335
336                 rv = ldc_read(vio->lp, &pkt, sizeof(pkt));
337                 if (rv <= 0)
338                         break;
339
340                 vccdbg("VCC: ldc_read()=%d\n", rv);
341                 vccdbg("TAG [%02x:%02x:%04x:%08x]\n",
342                        pkt.tag.type, pkt.tag.stype,
343                        pkt.tag.stype_env, pkt.tag.sid);
344
345                 if (pkt.tag.type == VIO_TYPE_DATA) {
346                         vccdbgp(pkt);
347                         /* vcc_rx_check ensures memory availability */
348                         vcc_rx(tty, pkt.data, pkt.tag.stype);
349                 } else {
350                         pr_err("VCC: unknown msg [%02x:%02x:%04x:%08x]\n",
351                                pkt.tag.type, pkt.tag.stype,
352                                pkt.tag.stype_env, pkt.tag.sid);
353                         rv = -ECONNRESET;
354                         break;
355                 }
356
357                 WARN_ON(rv != LDC_PACKET_SIZE);
358         }
359
360 done:
361         return rv;
362 }
363
364 static void vcc_rx_timer(struct timer_list *t)
365 {
366         struct vcc_port *port = from_timer(port, t, rx_timer);
367         struct vio_driver_state *vio;
368         unsigned long flags;
369         int rv;
370
371         spin_lock_irqsave(&port->lock, flags);
372         port->rx_timer.expires = 0;
373
374         vio = &port->vio;
375
376         enable_irq(vio->vdev->rx_irq);
377
378         if (!port->tty || port->removed)
379                 goto done;
380
381         rv = vcc_ldc_read(port);
382         if (rv == -ECONNRESET)
383                 vio_conn_reset(vio);
384
385 done:
386         spin_unlock_irqrestore(&port->lock, flags);
387         vcc_put(port, false);
388 }
389
390 static void vcc_tx_timer(struct timer_list *t)
391 {
392         struct vcc_port *port = from_timer(port, t, tx_timer);
393         struct vio_vcc *pkt;
394         unsigned long flags;
395         int tosend = 0;
396         int rv;
397
398         spin_lock_irqsave(&port->lock, flags);
399         port->tx_timer.expires = 0;
400
401         if (!port->tty || port->removed)
402                 goto done;
403
404         tosend = min(VCC_BUFF_LEN, port->chars_in_buffer);
405         if (!tosend)
406                 goto done;
407
408         pkt = &port->buffer;
409         pkt->tag.type = VIO_TYPE_DATA;
410         pkt->tag.stype = tosend;
411         vccdbgl(port->vio.lp);
412
413         rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend));
414         WARN_ON(!rv);
415
416         if (rv < 0) {
417                 vccdbg("VCC: ldc_write()=%d\n", rv);
418                 vcc_kick_tx(port);
419         } else {
420                 struct tty_struct *tty = port->tty;
421
422                 port->chars_in_buffer = 0;
423                 if (tty)
424                         tty_wakeup(tty);
425         }
426
427 done:
428         spin_unlock_irqrestore(&port->lock, flags);
429         vcc_put(port, false);
430 }
431
432 /**
433  * vcc_event() - LDC event processing engine
434  * @arg: VCC private data
435  * @event: LDC event
436  *
437  * Handles LDC events for VCC
438  */
439 static void vcc_event(void *arg, int event)
440 {
441         struct vio_driver_state *vio;
442         struct vcc_port *port;
443         unsigned long flags;
444         int rv;
445
446         port = arg;
447         vio = &port->vio;
448
449         spin_lock_irqsave(&port->lock, flags);
450
451         switch (event) {
452         case LDC_EVENT_RESET:
453         case LDC_EVENT_UP:
454                 vio_link_state_change(vio, event);
455                 break;
456
457         case LDC_EVENT_DATA_READY:
458                 rv = vcc_ldc_read(port);
459                 if (rv == -ECONNRESET)
460                         vio_conn_reset(vio);
461                 break;
462
463         default:
464                 pr_err("VCC: unexpected LDC event(%d)\n", event);
465         }
466
467         spin_unlock_irqrestore(&port->lock, flags);
468 }
469
470 static struct ldc_channel_config vcc_ldc_cfg = {
471         .event          = vcc_event,
472         .mtu            = VIO_VCC_MTU_SIZE,
473         .mode           = LDC_MODE_RAW,
474         .debug          = 0,
475 };
476
477 /* Ordered from largest major to lowest */
478 static struct vio_version vcc_versions[] = {
479         { .major = 1, .minor = 0 },
480 };
481
482 static struct tty_port_operations vcc_port_ops = { 0 };
483
484 static ssize_t vcc_sysfs_domain_show(struct device *dev,
485                                      struct device_attribute *attr,
486                                      char *buf)
487 {
488         struct vcc_port *port;
489         int rv;
490
491         port = dev_get_drvdata(dev);
492         if (!port)
493                 return -ENODEV;
494
495         rv = scnprintf(buf, PAGE_SIZE, "%s\n", port->domain);
496
497         return rv;
498 }
499
500 static int vcc_send_ctl(struct vcc_port *port, int ctl)
501 {
502         struct vio_vcc pkt;
503         int rv;
504
505         pkt.tag.type = VIO_TYPE_CTRL;
506         pkt.tag.sid = ctl;
507         pkt.tag.stype = 0;
508
509         rv = ldc_write(port->vio.lp, &pkt, sizeof(pkt.tag));
510         WARN_ON(!rv);
511         vccdbg("VCC: ldc_write(%ld)=%d\n", sizeof(pkt.tag), rv);
512
513         return rv;
514 }
515
516 static ssize_t vcc_sysfs_break_store(struct device *dev,
517                                      struct device_attribute *attr,
518                                      const char *buf, size_t count)
519 {
520         struct vcc_port *port;
521         unsigned long flags;
522         int rv = count;
523         int brk;
524
525         port = dev_get_drvdata(dev);
526         if (!port)
527                 return -ENODEV;
528
529         spin_lock_irqsave(&port->lock, flags);
530
531         if (sscanf(buf, "%ud", &brk) != 1 || brk != 1)
532                 rv = -EINVAL;
533         else if (vcc_send_ctl(port, VCC_CTL_BREAK) < 0)
534                 vcc_kick_tx(port);
535
536         spin_unlock_irqrestore(&port->lock, flags);
537
538         return rv;
539 }
540
541 static DEVICE_ATTR(domain, 0400, vcc_sysfs_domain_show, NULL);
542 static DEVICE_ATTR(break, 0200, NULL, vcc_sysfs_break_store);
543
544 static struct attribute *vcc_sysfs_entries[] = {
545         &dev_attr_domain.attr,
546         &dev_attr_break.attr,
547         NULL
548 };
549
550 static struct attribute_group vcc_attribute_group = {
551         .name = NULL,
552         .attrs = vcc_sysfs_entries,
553 };
554
555 /**
556  * vcc_probe() - Initialize VCC port
557  * @vdev: Pointer to VIO device of the new VCC port
558  * @id: VIO device ID
559  *
560  * Initializes a VCC port to receive serial console data from
561  * the guest domain. Sets up a TTY end point on the control
562  * domain. Sets up VIO/LDC link between the guest & control
563  * domain endpoints.
564  *
565  * Return: status of the probe
566  */
567 static int vcc_probe(struct vio_dev *vdev, const struct vio_device_id *id)
568 {
569         struct mdesc_handle *hp;
570         struct vcc_port *port;
571         struct device *dev;
572         const char *domain;
573         char *name;
574         u64 node;
575         int rv;
576
577         vccdbg("VCC: name=%s\n", dev_name(&vdev->dev));
578
579         if (!vcc_tty_driver) {
580                 pr_err("VCC: TTY driver not registered\n");
581                 return -ENODEV;
582         }
583
584         port = kzalloc(sizeof(struct vcc_port), GFP_KERNEL);
585         if (!port)
586                 return -ENOMEM;
587
588         name = kstrdup(dev_name(&vdev->dev), GFP_KERNEL);
589         if (!name) {
590                 rv = -ENOMEM;
591                 goto free_port;
592         }
593
594         rv = vio_driver_init(&port->vio, vdev, VDEV_CONSOLE_CON, vcc_versions,
595                              ARRAY_SIZE(vcc_versions), NULL, name);
596         if (rv)
597                 goto free_name;
598
599         port->vio.debug = vcc_dbg_vio;
600         vcc_ldc_cfg.debug = vcc_dbg_ldc;
601
602         rv = vio_ldc_alloc(&port->vio, &vcc_ldc_cfg, port);
603         if (rv)
604                 goto free_name;
605
606         spin_lock_init(&port->lock);
607
608         port->index = vcc_table_add(port);
609         if (port->index == -1) {
610                 pr_err("VCC: no more TTY indices left for allocation\n");
611                 rv = -ENOMEM;
612                 goto free_ldc;
613         }
614
615         /* Register the device using VCC table index as TTY index */
616         dev = tty_register_device(vcc_tty_driver, port->index, &vdev->dev);
617         if (IS_ERR(dev)) {
618                 rv = PTR_ERR(dev);
619                 goto free_table;
620         }
621
622         hp = mdesc_grab();
623
624         node = vio_vdev_node(hp, vdev);
625         if (node == MDESC_NODE_NULL) {
626                 rv = -ENXIO;
627                 mdesc_release(hp);
628                 goto unreg_tty;
629         }
630
631         domain = mdesc_get_property(hp, node, "vcc-domain-name", NULL);
632         if (!domain) {
633                 rv = -ENXIO;
634                 mdesc_release(hp);
635                 goto unreg_tty;
636         }
637         port->domain = kstrdup(domain, GFP_KERNEL);
638         if (!port->domain) {
639                 rv = -ENOMEM;
640                 goto unreg_tty;
641         }
642
643
644         mdesc_release(hp);
645
646         rv = sysfs_create_group(&vdev->dev.kobj, &vcc_attribute_group);
647         if (rv)
648                 goto free_domain;
649
650         timer_setup(&port->rx_timer, vcc_rx_timer, 0);
651         timer_setup(&port->tx_timer, vcc_tx_timer, 0);
652
653         dev_set_drvdata(&vdev->dev, port);
654
655         /* It's possible to receive IRQs in the middle of vio_port_up. Disable
656          * IRQs until the port is up.
657          */
658         disable_irq_nosync(vdev->rx_irq);
659         vio_port_up(&port->vio);
660         enable_irq(vdev->rx_irq);
661
662         return 0;
663
664 free_domain:
665         kfree(port->domain);
666 unreg_tty:
667         tty_unregister_device(vcc_tty_driver, port->index);
668 free_table:
669         vcc_table_remove(port->index);
670 free_ldc:
671         vio_ldc_free(&port->vio);
672 free_name:
673         kfree(name);
674 free_port:
675         kfree(port);
676
677         return rv;
678 }
679
680 /**
681  * vcc_remove() - Terminate a VCC port
682  * @vdev: Pointer to VIO device of the VCC port
683  *
684  * Terminates a VCC port. Sets up the teardown of TTY and
685  * VIO/LDC link between guest and primary domains.
686  *
687  * Return: status of removal
688  */
689 static int vcc_remove(struct vio_dev *vdev)
690 {
691         struct vcc_port *port = dev_get_drvdata(&vdev->dev);
692
693         if (!port)
694                 return -ENODEV;
695
696         del_timer_sync(&port->rx_timer);
697         del_timer_sync(&port->tx_timer);
698
699         /* If there's a process with the device open, do a synchronous
700          * hangup of the TTY. This *may* cause the process to call close
701          * asynchronously, but it's not guaranteed.
702          */
703         if (port->tty)
704                 tty_vhangup(port->tty);
705
706         /* Get exclusive reference to VCC, ensures that there are no other
707          * clients to this port
708          */
709         port = vcc_get(port->index, true);
710
711         if (WARN_ON(!port))
712                 return -ENODEV;
713
714         tty_unregister_device(vcc_tty_driver, port->index);
715
716         del_timer_sync(&port->vio.timer);
717         vio_ldc_free(&port->vio);
718         sysfs_remove_group(&vdev->dev.kobj, &vcc_attribute_group);
719         dev_set_drvdata(&vdev->dev, NULL);
720         if (port->tty) {
721                 port->removed = true;
722                 vcc_put(port, true);
723         } else {
724                 vcc_table_remove(port->index);
725
726                 kfree(port->vio.name);
727                 kfree(port->domain);
728                 kfree(port);
729         }
730
731         return 0;
732 }
733
734 static const struct vio_device_id vcc_match[] = {
735         {
736                 .type = "vcc-port",
737         },
738         {},
739 };
740 MODULE_DEVICE_TABLE(vio, vcc_match);
741
742 static struct vio_driver vcc_driver = {
743         .id_table       = vcc_match,
744         .probe          = vcc_probe,
745         .remove         = vcc_remove,
746         .name           = "vcc",
747 };
748
749 static int vcc_open(struct tty_struct *tty, struct file *vcc_file)
750 {
751         struct vcc_port *port;
752
753         if (unlikely(!tty)) {
754                 pr_err("VCC: open: Invalid TTY handle\n");
755                 return -ENXIO;
756         }
757
758         if (tty->count > 1)
759                 return -EBUSY;
760
761         port = vcc_get_ne(tty->index);
762         if (unlikely(!port)) {
763                 pr_err("VCC: open: Failed to find VCC port\n");
764                 return -ENODEV;
765         }
766
767         if (unlikely(!port->vio.lp)) {
768                 pr_err("VCC: open: LDC channel not configured\n");
769                 vcc_put(port, false);
770                 return -EPIPE;
771         }
772         vccdbgl(port->vio.lp);
773
774         vcc_put(port, false);
775
776         if (unlikely(!tty->port)) {
777                 pr_err("VCC: open: TTY port not found\n");
778                 return -ENXIO;
779         }
780
781         if (unlikely(!tty->port->ops)) {
782                 pr_err("VCC: open: TTY ops not defined\n");
783                 return -ENXIO;
784         }
785
786         return tty_port_open(tty->port, tty, vcc_file);
787 }
788
789 static void vcc_close(struct tty_struct *tty, struct file *vcc_file)
790 {
791         if (unlikely(!tty)) {
792                 pr_err("VCC: close: Invalid TTY handle\n");
793                 return;
794         }
795
796         if (unlikely(tty->count > 1))
797                 return;
798
799         if (unlikely(!tty->port)) {
800                 pr_err("VCC: close: TTY port not found\n");
801                 return;
802         }
803
804         tty_port_close(tty->port, tty, vcc_file);
805 }
806
807 static void vcc_ldc_hup(struct vcc_port *port)
808 {
809         unsigned long flags;
810
811         spin_lock_irqsave(&port->lock, flags);
812
813         if (vcc_send_ctl(port, VCC_CTL_HUP) < 0)
814                 vcc_kick_tx(port);
815
816         spin_unlock_irqrestore(&port->lock, flags);
817 }
818
819 static void vcc_hangup(struct tty_struct *tty)
820 {
821         struct vcc_port *port;
822
823         if (unlikely(!tty)) {
824                 pr_err("VCC: hangup: Invalid TTY handle\n");
825                 return;
826         }
827
828         port = vcc_get_ne(tty->index);
829         if (unlikely(!port)) {
830                 pr_err("VCC: hangup: Failed to find VCC port\n");
831                 return;
832         }
833
834         if (unlikely(!tty->port)) {
835                 pr_err("VCC: hangup: TTY port not found\n");
836                 vcc_put(port, false);
837                 return;
838         }
839
840         vcc_ldc_hup(port);
841
842         vcc_put(port, false);
843
844         tty_port_hangup(tty->port);
845 }
846
847 static int vcc_write(struct tty_struct *tty, const unsigned char *buf,
848                      int count)
849 {
850         struct vcc_port *port;
851         struct vio_vcc *pkt;
852         unsigned long flags;
853         int total_sent = 0;
854         int tosend = 0;
855         int rv = -EINVAL;
856
857         if (unlikely(!tty)) {
858                 pr_err("VCC: write: Invalid TTY handle\n");
859                 return -ENXIO;
860         }
861
862         port = vcc_get_ne(tty->index);
863         if (unlikely(!port)) {
864                 pr_err("VCC: write: Failed to find VCC port");
865                 return -ENODEV;
866         }
867
868         spin_lock_irqsave(&port->lock, flags);
869
870         pkt = &port->buffer;
871         pkt->tag.type = VIO_TYPE_DATA;
872
873         while (count > 0) {
874                 /* Minimum of data to write and space available */
875                 tosend = min(count, (VCC_BUFF_LEN - port->chars_in_buffer));
876
877                 if (!tosend)
878                         break;
879
880                 memcpy(&pkt->data[port->chars_in_buffer], &buf[total_sent],
881                        tosend);
882                 port->chars_in_buffer += tosend;
883                 pkt->tag.stype = tosend;
884
885                 vccdbg("TAG [%02x:%02x:%04x:%08x]\n", pkt->tag.type,
886                        pkt->tag.stype, pkt->tag.stype_env, pkt->tag.sid);
887                 vccdbg("DATA [%s]\n", pkt->data);
888                 vccdbgl(port->vio.lp);
889
890                 /* Since we know we have enough room in VCC buffer for tosend
891                  * we record that it was sent regardless of whether the
892                  * hypervisor actually took it because we have it buffered.
893                  */
894                 rv = ldc_write(port->vio.lp, pkt, (VIO_TAG_SIZE + tosend));
895                 vccdbg("VCC: write: ldc_write(%d)=%d\n",
896                        (VIO_TAG_SIZE + tosend), rv);
897
898                 total_sent += tosend;
899                 count -= tosend;
900                 if (rv < 0) {
901                         vcc_kick_tx(port);
902                         break;
903                 }
904
905                 port->chars_in_buffer = 0;
906         }
907
908         spin_unlock_irqrestore(&port->lock, flags);
909
910         vcc_put(port, false);
911
912         vccdbg("VCC: write: total=%d rv=%d", total_sent, rv);
913
914         return total_sent ? total_sent : rv;
915 }
916
917 static int vcc_write_room(struct tty_struct *tty)
918 {
919         struct vcc_port *port;
920         u64 num;
921
922         if (unlikely(!tty)) {
923                 pr_err("VCC: write_room: Invalid TTY handle\n");
924                 return -ENXIO;
925         }
926
927         port = vcc_get_ne(tty->index);
928         if (unlikely(!port)) {
929                 pr_err("VCC: write_room: Failed to find VCC port\n");
930                 return -ENODEV;
931         }
932
933         num = VCC_BUFF_LEN - port->chars_in_buffer;
934
935         vcc_put(port, false);
936
937         return num;
938 }
939
940 static int vcc_chars_in_buffer(struct tty_struct *tty)
941 {
942         struct vcc_port *port;
943         u64 num;
944
945         if (unlikely(!tty)) {
946                 pr_err("VCC: chars_in_buffer: Invalid TTY handle\n");
947                 return -ENXIO;
948         }
949
950         port = vcc_get_ne(tty->index);
951         if (unlikely(!port)) {
952                 pr_err("VCC: chars_in_buffer: Failed to find VCC port\n");
953                 return -ENODEV;
954         }
955
956         num = port->chars_in_buffer;
957
958         vcc_put(port, false);
959
960         return num;
961 }
962
963 static int vcc_break_ctl(struct tty_struct *tty, int state)
964 {
965         struct vcc_port *port;
966         unsigned long flags;
967
968         if (unlikely(!tty)) {
969                 pr_err("VCC: break_ctl: Invalid TTY handle\n");
970                 return -ENXIO;
971         }
972
973         port = vcc_get_ne(tty->index);
974         if (unlikely(!port)) {
975                 pr_err("VCC: break_ctl: Failed to find VCC port\n");
976                 return -ENODEV;
977         }
978
979         /* Turn off break */
980         if (state == 0) {
981                 vcc_put(port, false);
982                 return 0;
983         }
984
985         spin_lock_irqsave(&port->lock, flags);
986
987         if (vcc_send_ctl(port, VCC_CTL_BREAK) < 0)
988                 vcc_kick_tx(port);
989
990         spin_unlock_irqrestore(&port->lock, flags);
991
992         vcc_put(port, false);
993
994         return 0;
995 }
996
997 static int vcc_install(struct tty_driver *driver, struct tty_struct *tty)
998 {
999         struct vcc_port *port_vcc;
1000         struct tty_port *port_tty;
1001         int ret;
1002
1003         if (unlikely(!tty)) {
1004                 pr_err("VCC: install: Invalid TTY handle\n");
1005                 return -ENXIO;
1006         }
1007
1008         if (tty->index >= VCC_MAX_PORTS)
1009                 return -EINVAL;
1010
1011         ret = tty_standard_install(driver, tty);
1012         if (ret)
1013                 return ret;
1014
1015         port_tty = kzalloc(sizeof(struct tty_port), GFP_KERNEL);
1016         if (!port_tty)
1017                 return -ENOMEM;
1018
1019         port_vcc = vcc_get(tty->index, true);
1020         if (!port_vcc) {
1021                 pr_err("VCC: install: Failed to find VCC port\n");
1022                 tty->port = NULL;
1023                 kfree(port_tty);
1024                 return -ENODEV;
1025         }
1026
1027         tty_port_init(port_tty);
1028         port_tty->ops = &vcc_port_ops;
1029         tty->port = port_tty;
1030
1031         port_vcc->tty = tty;
1032
1033         vcc_put(port_vcc, true);
1034
1035         return 0;
1036 }
1037
1038 static void vcc_cleanup(struct tty_struct *tty)
1039 {
1040         struct vcc_port *port;
1041
1042         if (unlikely(!tty)) {
1043                 pr_err("VCC: cleanup: Invalid TTY handle\n");
1044                 return;
1045         }
1046
1047         port = vcc_get(tty->index, true);
1048         if (port) {
1049                 port->tty = NULL;
1050
1051                 if (port->removed) {
1052                         vcc_table_remove(tty->index);
1053                         kfree(port->vio.name);
1054                         kfree(port->domain);
1055                         kfree(port);
1056                 } else {
1057                         vcc_put(port, true);
1058                 }
1059         }
1060
1061         tty_port_destroy(tty->port);
1062         kfree(tty->port);
1063         tty->port = NULL;
1064 }
1065
1066 static const struct tty_operations vcc_ops = {
1067         .open                   = vcc_open,
1068         .close                  = vcc_close,
1069         .hangup                 = vcc_hangup,
1070         .write                  = vcc_write,
1071         .write_room             = vcc_write_room,
1072         .chars_in_buffer        = vcc_chars_in_buffer,
1073         .break_ctl              = vcc_break_ctl,
1074         .install                = vcc_install,
1075         .cleanup                = vcc_cleanup,
1076 };
1077
1078 #define VCC_TTY_FLAGS   (TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_REAL_RAW)
1079
1080 static int vcc_tty_init(void)
1081 {
1082         int rv;
1083
1084         pr_info("VCC: %s\n", version);
1085
1086         vcc_tty_driver = tty_alloc_driver(VCC_MAX_PORTS, VCC_TTY_FLAGS);
1087         if (IS_ERR(vcc_tty_driver)) {
1088                 pr_err("VCC: TTY driver alloc failed\n");
1089                 return PTR_ERR(vcc_tty_driver);
1090         }
1091
1092         vcc_tty_driver->driver_name = vcc_driver_name;
1093         vcc_tty_driver->name = vcc_device_node;
1094
1095         vcc_tty_driver->minor_start = VCC_MINOR_START;
1096         vcc_tty_driver->type = TTY_DRIVER_TYPE_SYSTEM;
1097         vcc_tty_driver->init_termios = vcc_tty_termios;
1098
1099         tty_set_operations(vcc_tty_driver, &vcc_ops);
1100
1101         rv = tty_register_driver(vcc_tty_driver);
1102         if (rv) {
1103                 pr_err("VCC: TTY driver registration failed\n");
1104                 put_tty_driver(vcc_tty_driver);
1105                 vcc_tty_driver = NULL;
1106                 return rv;
1107         }
1108
1109         vccdbg("VCC: TTY driver registered\n");
1110
1111         return 0;
1112 }
1113
1114 static void vcc_tty_exit(void)
1115 {
1116         tty_unregister_driver(vcc_tty_driver);
1117         put_tty_driver(vcc_tty_driver);
1118         vccdbg("VCC: TTY driver unregistered\n");
1119
1120         vcc_tty_driver = NULL;
1121 }
1122
1123 static int __init vcc_init(void)
1124 {
1125         int rv;
1126
1127         rv = vcc_tty_init();
1128         if (rv) {
1129                 pr_err("VCC: TTY init failed\n");
1130                 return rv;
1131         }
1132
1133         rv = vio_register_driver(&vcc_driver);
1134         if (rv) {
1135                 pr_err("VCC: VIO driver registration failed\n");
1136                 vcc_tty_exit();
1137         } else {
1138                 vccdbg("VCC: VIO driver registered successfully\n");
1139         }
1140
1141         return rv;
1142 }
1143
1144 static void __exit vcc_exit(void)
1145 {
1146         vio_unregister_driver(&vcc_driver);
1147         vccdbg("VCC: VIO driver unregistered\n");
1148         vcc_tty_exit();
1149         vccdbg("VCC: TTY driver unregistered\n");
1150 }
1151
1152 module_init(vcc_init);
1153 module_exit(vcc_exit);