virtio: console: Return -EPIPE to hvc_console if we lost the connection
[pandora-kernel.git] / drivers / char / virtio_console.c
1 /*
2  * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
3  * Copyright (C) 2009, 2010 Red Hat, Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include <linux/cdev.h>
20 #include <linux/debugfs.h>
21 #include <linux/device.h>
22 #include <linux/err.h>
23 #include <linux/fs.h>
24 #include <linux/init.h>
25 #include <linux/list.h>
26 #include <linux/poll.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/spinlock.h>
30 #include <linux/virtio.h>
31 #include <linux/virtio_console.h>
32 #include <linux/wait.h>
33 #include <linux/workqueue.h>
34 #include "hvc_console.h"
35
36 /*
37  * This is a global struct for storing common data for all the devices
38  * this driver handles.
39  *
40  * Mainly, it has a linked list for all the consoles in one place so
41  * that callbacks from hvc for get_chars(), put_chars() work properly
42  * across multiple devices and multiple ports per device.
43  */
44 struct ports_driver_data {
45         /* Used for registering chardevs */
46         struct class *class;
47
48         /* Used for exporting per-port information to debugfs */
49         struct dentry *debugfs_dir;
50
51         /* Number of devices this driver is handling */
52         unsigned int index;
53
54         /*
55          * This is used to keep track of the number of hvc consoles
56          * spawned by this driver.  This number is given as the first
57          * argument to hvc_alloc().  To correctly map an initial
58          * console spawned via hvc_instantiate to the console being
59          * hooked up via hvc_alloc, we need to pass the same vtermno.
60          *
61          * We also just assume the first console being initialised was
62          * the first one that got used as the initial console.
63          */
64         unsigned int next_vtermno;
65
66         /* All the console devices handled by this driver */
67         struct list_head consoles;
68 };
69 static struct ports_driver_data pdrvdata;
70
71 DEFINE_SPINLOCK(pdrvdata_lock);
72
73 /* This struct holds information that's relevant only for console ports */
74 struct console {
75         /* We'll place all consoles in a list in the pdrvdata struct */
76         struct list_head list;
77
78         /* The hvc device associated with this console port */
79         struct hvc_struct *hvc;
80
81         /*
82          * This number identifies the number that we used to register
83          * with hvc in hvc_instantiate() and hvc_alloc(); this is the
84          * number passed on by the hvc callbacks to us to
85          * differentiate between the other console ports handled by
86          * this driver
87          */
88         u32 vtermno;
89 };
90
91 struct port_buffer {
92         char *buf;
93
94         /* size of the buffer in *buf above */
95         size_t size;
96
97         /* used length of the buffer */
98         size_t len;
99         /* offset in the buf from which to consume data */
100         size_t offset;
101 };
102
103 /*
104  * This is a per-device struct that stores data common to all the
105  * ports for that device (vdev->priv).
106  */
107 struct ports_device {
108         /*
109          * Workqueue handlers where we process deferred work after
110          * notification
111          */
112         struct work_struct control_work;
113         struct work_struct config_work;
114
115         struct list_head ports;
116
117         /* To protect the list of ports */
118         spinlock_t ports_lock;
119
120         /* To protect the vq operations for the control channel */
121         spinlock_t cvq_lock;
122
123         /* The current config space is stored here */
124         struct virtio_console_config config;
125
126         /* The virtio device we're associated with */
127         struct virtio_device *vdev;
128
129         /*
130          * A couple of virtqueues for the control channel: one for
131          * guest->host transfers, one for host->guest transfers
132          */
133         struct virtqueue *c_ivq, *c_ovq;
134
135         /* Array of per-port IO virtqueues */
136         struct virtqueue **in_vqs, **out_vqs;
137
138         /* Used for numbering devices for sysfs and debugfs */
139         unsigned int drv_index;
140
141         /* Major number for this device.  Ports will be created as minors. */
142         int chr_major;
143 };
144
145 /* This struct holds the per-port data */
146 struct port {
147         /* Next port in the list, head is in the ports_device */
148         struct list_head list;
149
150         /* Pointer to the parent virtio_console device */
151         struct ports_device *portdev;
152
153         /* The current buffer from which data has to be fed to readers */
154         struct port_buffer *inbuf;
155
156         /*
157          * To protect the operations on the in_vq associated with this
158          * port.  Has to be a spinlock because it can be called from
159          * interrupt context (get_char()).
160          */
161         spinlock_t inbuf_lock;
162
163         /* The IO vqs for this port */
164         struct virtqueue *in_vq, *out_vq;
165
166         /* File in the debugfs directory that exposes this port's information */
167         struct dentry *debugfs_file;
168
169         /*
170          * The entries in this struct will be valid if this port is
171          * hooked up to an hvc console
172          */
173         struct console cons;
174
175         /* Each port associates with a separate char device */
176         struct cdev cdev;
177         struct device *dev;
178
179         /* A waitqueue for poll() or blocking read operations */
180         wait_queue_head_t waitqueue;
181
182         /* The 'name' of the port that we expose via sysfs properties */
183         char *name;
184
185         /* The 'id' to identify the port with the Host */
186         u32 id;
187
188         /* Is the host device open */
189         bool host_connected;
190
191         /* We should allow only one process to open a port */
192         bool guest_connected;
193 };
194
195 /* This is the very early arch-specified put chars function. */
196 static int (*early_put_chars)(u32, const char *, int);
197
198 static struct port *find_port_by_vtermno(u32 vtermno)
199 {
200         struct port *port;
201         struct console *cons;
202         unsigned long flags;
203
204         spin_lock_irqsave(&pdrvdata_lock, flags);
205         list_for_each_entry(cons, &pdrvdata.consoles, list) {
206                 if (cons->vtermno == vtermno) {
207                         port = container_of(cons, struct port, cons);
208                         goto out;
209                 }
210         }
211         port = NULL;
212 out:
213         spin_unlock_irqrestore(&pdrvdata_lock, flags);
214         return port;
215 }
216
217 static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
218 {
219         struct port *port;
220         unsigned long flags;
221
222         spin_lock_irqsave(&portdev->ports_lock, flags);
223         list_for_each_entry(port, &portdev->ports, list)
224                 if (port->id == id)
225                         goto out;
226         port = NULL;
227 out:
228         spin_unlock_irqrestore(&portdev->ports_lock, flags);
229
230         return port;
231 }
232
233 static struct port *find_port_by_vq(struct ports_device *portdev,
234                                     struct virtqueue *vq)
235 {
236         struct port *port;
237         unsigned long flags;
238
239         spin_lock_irqsave(&portdev->ports_lock, flags);
240         list_for_each_entry(port, &portdev->ports, list)
241                 if (port->in_vq == vq || port->out_vq == vq)
242                         goto out;
243         port = NULL;
244 out:
245         spin_unlock_irqrestore(&portdev->ports_lock, flags);
246         return port;
247 }
248
249 static bool is_console_port(struct port *port)
250 {
251         if (port->cons.hvc)
252                 return true;
253         return false;
254 }
255
256 static inline bool use_multiport(struct ports_device *portdev)
257 {
258         /*
259          * This condition can be true when put_chars is called from
260          * early_init
261          */
262         if (!portdev->vdev)
263                 return 0;
264         return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
265 }
266
267 static void free_buf(struct port_buffer *buf)
268 {
269         kfree(buf->buf);
270         kfree(buf);
271 }
272
273 static struct port_buffer *alloc_buf(size_t buf_size)
274 {
275         struct port_buffer *buf;
276
277         buf = kmalloc(sizeof(*buf), GFP_KERNEL);
278         if (!buf)
279                 goto fail;
280         buf->buf = kzalloc(buf_size, GFP_KERNEL);
281         if (!buf->buf)
282                 goto free_buf;
283         buf->len = 0;
284         buf->offset = 0;
285         buf->size = buf_size;
286         return buf;
287
288 free_buf:
289         kfree(buf);
290 fail:
291         return NULL;
292 }
293
294 /* Callers should take appropriate locks */
295 static void *get_inbuf(struct port *port)
296 {
297         struct port_buffer *buf;
298         struct virtqueue *vq;
299         unsigned int len;
300
301         vq = port->in_vq;
302         buf = virtqueue_get_buf(vq, &len);
303         if (buf) {
304                 buf->len = len;
305                 buf->offset = 0;
306         }
307         return buf;
308 }
309
310 /*
311  * Create a scatter-gather list representing our input buffer and put
312  * it in the queue.
313  *
314  * Callers should take appropriate locks.
315  */
316 static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
317 {
318         struct scatterlist sg[1];
319         int ret;
320
321         sg_init_one(sg, buf->buf, buf->size);
322
323         ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
324         virtqueue_kick(vq);
325         return ret;
326 }
327
328 /* Discard any unread data this port has. Callers lockers. */
329 static void discard_port_data(struct port *port)
330 {
331         struct port_buffer *buf;
332         struct virtqueue *vq;
333         unsigned int len;
334         int ret;
335
336         vq = port->in_vq;
337         if (port->inbuf)
338                 buf = port->inbuf;
339         else
340                 buf = virtqueue_get_buf(vq, &len);
341
342         ret = 0;
343         while (buf) {
344                 if (add_inbuf(vq, buf) < 0) {
345                         ret++;
346                         free_buf(buf);
347                 }
348                 buf = virtqueue_get_buf(vq, &len);
349         }
350         port->inbuf = NULL;
351         if (ret)
352                 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
353                          ret);
354 }
355
356 static bool port_has_data(struct port *port)
357 {
358         unsigned long flags;
359         bool ret;
360
361         spin_lock_irqsave(&port->inbuf_lock, flags);
362         if (port->inbuf) {
363                 ret = true;
364                 goto out;
365         }
366         port->inbuf = get_inbuf(port);
367         if (port->inbuf) {
368                 ret = true;
369                 goto out;
370         }
371         ret = false;
372 out:
373         spin_unlock_irqrestore(&port->inbuf_lock, flags);
374         return ret;
375 }
376
377 static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
378                                   unsigned int event, unsigned int value)
379 {
380         struct scatterlist sg[1];
381         struct virtio_console_control cpkt;
382         struct virtqueue *vq;
383         unsigned int len;
384
385         if (!use_multiport(portdev))
386                 return 0;
387
388         cpkt.id = port_id;
389         cpkt.event = event;
390         cpkt.value = value;
391
392         vq = portdev->c_ovq;
393
394         sg_init_one(sg, &cpkt, sizeof(cpkt));
395         if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
396                 virtqueue_kick(vq);
397                 while (!virtqueue_get_buf(vq, &len))
398                         cpu_relax();
399         }
400         return 0;
401 }
402
403 static ssize_t send_control_msg(struct port *port, unsigned int event,
404                                 unsigned int value)
405 {
406         return __send_control_msg(port->portdev, port->id, event, value);
407 }
408
409 static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
410 {
411         struct scatterlist sg[1];
412         struct virtqueue *out_vq;
413         ssize_t ret;
414         unsigned int len;
415
416         out_vq = port->out_vq;
417
418         sg_init_one(sg, in_buf, in_count);
419         ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
420
421         /* Tell Host to go! */
422         virtqueue_kick(out_vq);
423
424         if (ret < 0) {
425                 in_count = 0;
426                 goto fail;
427         }
428
429         /* Wait till the host acknowledges it pushed out the data we sent. */
430         while (!virtqueue_get_buf(out_vq, &len))
431                 cpu_relax();
432 fail:
433         /* We're expected to return the amount of data we wrote */
434         return in_count;
435 }
436
437 /*
438  * Give out the data that's requested from the buffer that we have
439  * queued up.
440  */
441 static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
442                             bool to_user)
443 {
444         struct port_buffer *buf;
445         unsigned long flags;
446
447         if (!out_count || !port_has_data(port))
448                 return 0;
449
450         buf = port->inbuf;
451         out_count = min(out_count, buf->len - buf->offset);
452
453         if (to_user) {
454                 ssize_t ret;
455
456                 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
457                 if (ret)
458                         return -EFAULT;
459         } else {
460                 memcpy(out_buf, buf->buf + buf->offset, out_count);
461         }
462
463         buf->offset += out_count;
464
465         if (buf->offset == buf->len) {
466                 /*
467                  * We're done using all the data in this buffer.
468                  * Re-queue so that the Host can send us more data.
469                  */
470                 spin_lock_irqsave(&port->inbuf_lock, flags);
471                 port->inbuf = NULL;
472
473                 if (add_inbuf(port->in_vq, buf) < 0)
474                         dev_warn(port->dev, "failed add_buf\n");
475
476                 spin_unlock_irqrestore(&port->inbuf_lock, flags);
477         }
478         /* Return the number of bytes actually copied */
479         return out_count;
480 }
481
482 /* The condition that must be true for polling to end */
483 static bool wait_is_over(struct port *port)
484 {
485         return port_has_data(port) || !port->host_connected;
486 }
487
488 static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
489                               size_t count, loff_t *offp)
490 {
491         struct port *port;
492         ssize_t ret;
493
494         port = filp->private_data;
495
496         if (!port_has_data(port)) {
497                 /*
498                  * If nothing's connected on the host just return 0 in
499                  * case of list_empty; this tells the userspace app
500                  * that there's no connection
501                  */
502                 if (!port->host_connected)
503                         return 0;
504                 if (filp->f_flags & O_NONBLOCK)
505                         return -EAGAIN;
506
507                 ret = wait_event_interruptible(port->waitqueue,
508                                                wait_is_over(port));
509                 if (ret < 0)
510                         return ret;
511         }
512         /*
513          * We could've received a disconnection message while we were
514          * waiting for more data.
515          *
516          * This check is not clubbed in the if() statement above as we
517          * might receive some data as well as the host could get
518          * disconnected after we got woken up from our wait.  So we
519          * really want to give off whatever data we have and only then
520          * check for host_connected.
521          */
522         if (!port_has_data(port) && !port->host_connected)
523                 return 0;
524
525         return fill_readbuf(port, ubuf, count, true);
526 }
527
528 static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
529                                size_t count, loff_t *offp)
530 {
531         struct port *port;
532         char *buf;
533         ssize_t ret;
534
535         port = filp->private_data;
536
537         count = min((size_t)(32 * 1024), count);
538
539         buf = kmalloc(count, GFP_KERNEL);
540         if (!buf)
541                 return -ENOMEM;
542
543         ret = copy_from_user(buf, ubuf, count);
544         if (ret) {
545                 ret = -EFAULT;
546                 goto free_buf;
547         }
548
549         ret = send_buf(port, buf, count);
550 free_buf:
551         kfree(buf);
552         return ret;
553 }
554
555 static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
556 {
557         struct port *port;
558         unsigned int ret;
559
560         port = filp->private_data;
561         poll_wait(filp, &port->waitqueue, wait);
562
563         ret = 0;
564         if (port->inbuf)
565                 ret |= POLLIN | POLLRDNORM;
566         if (port->host_connected)
567                 ret |= POLLOUT;
568         if (!port->host_connected)
569                 ret |= POLLHUP;
570
571         return ret;
572 }
573
574 static int port_fops_release(struct inode *inode, struct file *filp)
575 {
576         struct port *port;
577
578         port = filp->private_data;
579
580         /* Notify host of port being closed */
581         send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
582
583         spin_lock_irq(&port->inbuf_lock);
584         port->guest_connected = false;
585
586         discard_port_data(port);
587
588         spin_unlock_irq(&port->inbuf_lock);
589
590         return 0;
591 }
592
593 static int port_fops_open(struct inode *inode, struct file *filp)
594 {
595         struct cdev *cdev = inode->i_cdev;
596         struct port *port;
597
598         port = container_of(cdev, struct port, cdev);
599         filp->private_data = port;
600
601         /*
602          * Don't allow opening of console port devices -- that's done
603          * via /dev/hvc
604          */
605         if (is_console_port(port))
606                 return -ENXIO;
607
608         /* Allow only one process to open a particular port at a time */
609         spin_lock_irq(&port->inbuf_lock);
610         if (port->guest_connected) {
611                 spin_unlock_irq(&port->inbuf_lock);
612                 return -EMFILE;
613         }
614
615         port->guest_connected = true;
616         spin_unlock_irq(&port->inbuf_lock);
617
618         /* Notify host of port being opened */
619         send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
620
621         return 0;
622 }
623
624 /*
625  * The file operations that we support: programs in the guest can open
626  * a console device, read from it, write to it, poll for data and
627  * close it.  The devices are at
628  *   /dev/vport<device number>p<port number>
629  */
630 static const struct file_operations port_fops = {
631         .owner = THIS_MODULE,
632         .open  = port_fops_open,
633         .read  = port_fops_read,
634         .write = port_fops_write,
635         .poll  = port_fops_poll,
636         .release = port_fops_release,
637 };
638
639 /*
640  * The put_chars() callback is pretty straightforward.
641  *
642  * We turn the characters into a scatter-gather list, add it to the
643  * output queue and then kick the Host.  Then we sit here waiting for
644  * it to finish: inefficient in theory, but in practice
645  * implementations will do it immediately (lguest's Launcher does).
646  */
647 static int put_chars(u32 vtermno, const char *buf, int count)
648 {
649         struct port *port;
650
651         if (unlikely(early_put_chars))
652                 return early_put_chars(vtermno, buf, count);
653
654         port = find_port_by_vtermno(vtermno);
655         if (!port)
656                 return -EPIPE;
657
658         return send_buf(port, (void *)buf, count);
659 }
660
661 /*
662  * get_chars() is the callback from the hvc_console infrastructure
663  * when an interrupt is received.
664  *
665  * We call out to fill_readbuf that gets us the required data from the
666  * buffers that are queued up.
667  */
668 static int get_chars(u32 vtermno, char *buf, int count)
669 {
670         struct port *port;
671
672         /* If we've not set up the port yet, we have no input to give. */
673         if (unlikely(early_put_chars))
674                 return 0;
675
676         port = find_port_by_vtermno(vtermno);
677         if (!port)
678                 return -EPIPE;
679
680         /* If we don't have an input queue yet, we can't get input. */
681         BUG_ON(!port->in_vq);
682
683         return fill_readbuf(port, buf, count, false);
684 }
685
686 static void resize_console(struct port *port)
687 {
688         struct virtio_device *vdev;
689         struct winsize ws;
690
691         /* The port could have been hot-unplugged */
692         if (!port)
693                 return;
694
695         vdev = port->portdev->vdev;
696         if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
697                 vdev->config->get(vdev,
698                                   offsetof(struct virtio_console_config, cols),
699                                   &ws.ws_col, sizeof(u16));
700                 vdev->config->get(vdev,
701                                   offsetof(struct virtio_console_config, rows),
702                                   &ws.ws_row, sizeof(u16));
703                 hvc_resize(port->cons.hvc, ws);
704         }
705 }
706
707 /* We set the configuration at this point, since we now have a tty */
708 static int notifier_add_vio(struct hvc_struct *hp, int data)
709 {
710         struct port *port;
711
712         port = find_port_by_vtermno(hp->vtermno);
713         if (!port)
714                 return -EINVAL;
715
716         hp->irq_requested = 1;
717         resize_console(port);
718
719         return 0;
720 }
721
722 static void notifier_del_vio(struct hvc_struct *hp, int data)
723 {
724         hp->irq_requested = 0;
725 }
726
727 /* The operations for console ports. */
728 static const struct hv_ops hv_ops = {
729         .get_chars = get_chars,
730         .put_chars = put_chars,
731         .notifier_add = notifier_add_vio,
732         .notifier_del = notifier_del_vio,
733         .notifier_hangup = notifier_del_vio,
734 };
735
736 /*
737  * Console drivers are initialized very early so boot messages can go
738  * out, so we do things slightly differently from the generic virtio
739  * initialization of the net and block drivers.
740  *
741  * At this stage, the console is output-only.  It's too early to set
742  * up a virtqueue, so we let the drivers do some boutique early-output
743  * thing.
744  */
745 int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
746 {
747         early_put_chars = put_chars;
748         return hvc_instantiate(0, 0, &hv_ops);
749 }
750
751 int init_port_console(struct port *port)
752 {
753         int ret;
754
755         /*
756          * The Host's telling us this port is a console port.  Hook it
757          * up with an hvc console.
758          *
759          * To set up and manage our virtual console, we call
760          * hvc_alloc().
761          *
762          * The first argument of hvc_alloc() is the virtual console
763          * number.  The second argument is the parameter for the
764          * notification mechanism (like irq number).  We currently
765          * leave this as zero, virtqueues have implicit notifications.
766          *
767          * The third argument is a "struct hv_ops" containing the
768          * put_chars() get_chars(), notifier_add() and notifier_del()
769          * pointers.  The final argument is the output buffer size: we
770          * can do any size, so we put PAGE_SIZE here.
771          */
772         port->cons.vtermno = pdrvdata.next_vtermno;
773
774         port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
775         if (IS_ERR(port->cons.hvc)) {
776                 ret = PTR_ERR(port->cons.hvc);
777                 dev_err(port->dev,
778                         "error %d allocating hvc for port\n", ret);
779                 port->cons.hvc = NULL;
780                 return ret;
781         }
782         spin_lock_irq(&pdrvdata_lock);
783         pdrvdata.next_vtermno++;
784         list_add_tail(&port->cons.list, &pdrvdata.consoles);
785         spin_unlock_irq(&pdrvdata_lock);
786         port->guest_connected = true;
787
788         /* Notify host of port being opened */
789         send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
790
791         return 0;
792 }
793
794 static ssize_t show_port_name(struct device *dev,
795                               struct device_attribute *attr, char *buffer)
796 {
797         struct port *port;
798
799         port = dev_get_drvdata(dev);
800
801         return sprintf(buffer, "%s\n", port->name);
802 }
803
804 static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
805
806 static struct attribute *port_sysfs_entries[] = {
807         &dev_attr_name.attr,
808         NULL
809 };
810
811 static struct attribute_group port_attribute_group = {
812         .name = NULL,           /* put in device directory */
813         .attrs = port_sysfs_entries,
814 };
815
816 static int debugfs_open(struct inode *inode, struct file *filp)
817 {
818         filp->private_data = inode->i_private;
819         return 0;
820 }
821
822 static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
823                             size_t count, loff_t *offp)
824 {
825         struct port *port;
826         char *buf;
827         ssize_t ret, out_offset, out_count;
828
829         out_count = 1024;
830         buf = kmalloc(out_count, GFP_KERNEL);
831         if (!buf)
832                 return -ENOMEM;
833
834         port = filp->private_data;
835         out_offset = 0;
836         out_offset += snprintf(buf + out_offset, out_count,
837                                "name: %s\n", port->name ? port->name : "");
838         out_offset += snprintf(buf + out_offset, out_count - out_offset,
839                                "guest_connected: %d\n", port->guest_connected);
840         out_offset += snprintf(buf + out_offset, out_count - out_offset,
841                                "host_connected: %d\n", port->host_connected);
842         out_offset += snprintf(buf + out_offset, out_count - out_offset,
843                                "is_console: %s\n",
844                                is_console_port(port) ? "yes" : "no");
845         out_offset += snprintf(buf + out_offset, out_count - out_offset,
846                                "console_vtermno: %u\n", port->cons.vtermno);
847
848         ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
849         kfree(buf);
850         return ret;
851 }
852
853 static const struct file_operations port_debugfs_ops = {
854         .owner = THIS_MODULE,
855         .open  = debugfs_open,
856         .read  = debugfs_read,
857 };
858
859 /* Remove all port-specific data. */
860 static int remove_port(struct port *port)
861 {
862         struct port_buffer *buf;
863
864         spin_lock_irq(&port->portdev->ports_lock);
865         list_del(&port->list);
866         spin_unlock_irq(&port->portdev->ports_lock);
867
868         if (is_console_port(port)) {
869                 spin_lock_irq(&pdrvdata_lock);
870                 list_del(&port->cons.list);
871                 spin_unlock_irq(&pdrvdata_lock);
872                 hvc_remove(port->cons.hvc);
873         }
874         if (port->guest_connected)
875                 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
876
877         sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
878         device_destroy(pdrvdata.class, port->dev->devt);
879         cdev_del(&port->cdev);
880
881         /* Remove unused data this port might have received. */
882         discard_port_data(port);
883
884         /* Remove buffers we queued up for the Host to send us data in. */
885         while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
886                 free_buf(buf);
887
888         kfree(port->name);
889
890         debugfs_remove(port->debugfs_file);
891
892         kfree(port);
893         return 0;
894 }
895
896 /* Any private messages that the Host and Guest want to share */
897 static void handle_control_message(struct ports_device *portdev,
898                                    struct port_buffer *buf)
899 {
900         struct virtio_console_control *cpkt;
901         struct port *port;
902         size_t name_size;
903         int err;
904
905         cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
906
907         port = find_port_by_id(portdev, cpkt->id);
908         if (!port) {
909                 /* No valid header at start of buffer.  Drop it. */
910                 dev_dbg(&portdev->vdev->dev,
911                         "Invalid index %u in control packet\n", cpkt->id);
912                 return;
913         }
914
915         switch (cpkt->event) {
916         case VIRTIO_CONSOLE_CONSOLE_PORT:
917                 if (!cpkt->value)
918                         break;
919                 if (is_console_port(port))
920                         break;
921
922                 init_port_console(port);
923                 /*
924                  * Could remove the port here in case init fails - but
925                  * have to notify the host first.
926                  */
927                 break;
928         case VIRTIO_CONSOLE_RESIZE:
929                 if (!is_console_port(port))
930                         break;
931                 port->cons.hvc->irq_requested = 1;
932                 resize_console(port);
933                 break;
934         case VIRTIO_CONSOLE_PORT_OPEN:
935                 port->host_connected = cpkt->value;
936                 wake_up_interruptible(&port->waitqueue);
937                 break;
938         case VIRTIO_CONSOLE_PORT_NAME:
939                 /*
940                  * Skip the size of the header and the cpkt to get the size
941                  * of the name that was sent
942                  */
943                 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
944
945                 port->name = kmalloc(name_size, GFP_KERNEL);
946                 if (!port->name) {
947                         dev_err(port->dev,
948                                 "Not enough space to store port name\n");
949                         break;
950                 }
951                 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
952                         name_size - 1);
953                 port->name[name_size - 1] = 0;
954
955                 /*
956                  * Since we only have one sysfs attribute, 'name',
957                  * create it only if we have a name for the port.
958                  */
959                 err = sysfs_create_group(&port->dev->kobj,
960                                          &port_attribute_group);
961                 if (err) {
962                         dev_err(port->dev,
963                                 "Error %d creating sysfs device attributes\n",
964                                 err);
965                 } else {
966                         /*
967                          * Generate a udev event so that appropriate
968                          * symlinks can be created based on udev
969                          * rules.
970                          */
971                         kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
972                 }
973                 break;
974         case VIRTIO_CONSOLE_PORT_REMOVE:
975                 /*
976                  * Hot unplug the port.  We don't decrement nr_ports
977                  * since we don't want to deal with extra complexities
978                  * of using the lowest-available port id: We can just
979                  * pick up the nr_ports number as the id and not have
980                  * userspace send it to us.  This helps us in two
981                  * ways:
982                  *
983                  * - We don't need to have a 'port_id' field in the
984                  *   config space when a port is hot-added.  This is a
985                  *   good thing as we might queue up multiple hotplug
986                  *   requests issued in our workqueue.
987                  *
988                  * - Another way to deal with this would have been to
989                  *   use a bitmap of the active ports and select the
990                  *   lowest non-active port from that map.  That
991                  *   bloats the already tight config space and we
992                  *   would end up artificially limiting the
993                  *   max. number of ports to sizeof(bitmap).  Right
994                  *   now we can support 2^32 ports (as the port id is
995                  *   stored in a u32 type).
996                  *
997                  */
998                 remove_port(port);
999                 break;
1000         }
1001 }
1002
1003 static void control_work_handler(struct work_struct *work)
1004 {
1005         struct ports_device *portdev;
1006         struct virtqueue *vq;
1007         struct port_buffer *buf;
1008         unsigned int len;
1009
1010         portdev = container_of(work, struct ports_device, control_work);
1011         vq = portdev->c_ivq;
1012
1013         spin_lock(&portdev->cvq_lock);
1014         while ((buf = virtqueue_get_buf(vq, &len))) {
1015                 spin_unlock(&portdev->cvq_lock);
1016
1017                 buf->len = len;
1018                 buf->offset = 0;
1019
1020                 handle_control_message(portdev, buf);
1021
1022                 spin_lock(&portdev->cvq_lock);
1023                 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1024                         dev_warn(&portdev->vdev->dev,
1025                                  "Error adding buffer to queue\n");
1026                         free_buf(buf);
1027                 }
1028         }
1029         spin_unlock(&portdev->cvq_lock);
1030 }
1031
1032 static void in_intr(struct virtqueue *vq)
1033 {
1034         struct port *port;
1035         unsigned long flags;
1036
1037         port = find_port_by_vq(vq->vdev->priv, vq);
1038         if (!port)
1039                 return;
1040
1041         spin_lock_irqsave(&port->inbuf_lock, flags);
1042         if (!port->inbuf)
1043                 port->inbuf = get_inbuf(port);
1044
1045         /*
1046          * Don't queue up data when port is closed.  This condition
1047          * can be reached when a console port is not yet connected (no
1048          * tty is spawned) and the host sends out data to console
1049          * ports.  For generic serial ports, the host won't
1050          * (shouldn't) send data till the guest is connected.
1051          */
1052         if (!port->guest_connected)
1053                 discard_port_data(port);
1054
1055         spin_unlock_irqrestore(&port->inbuf_lock, flags);
1056
1057         wake_up_interruptible(&port->waitqueue);
1058
1059         if (is_console_port(port) && hvc_poll(port->cons.hvc))
1060                 hvc_kick();
1061 }
1062
1063 static void control_intr(struct virtqueue *vq)
1064 {
1065         struct ports_device *portdev;
1066
1067         portdev = vq->vdev->priv;
1068         schedule_work(&portdev->control_work);
1069 }
1070
1071 static void config_intr(struct virtio_device *vdev)
1072 {
1073         struct ports_device *portdev;
1074
1075         portdev = vdev->priv;
1076         if (use_multiport(portdev)) {
1077                 /* Handle port hot-add */
1078                 schedule_work(&portdev->config_work);
1079         }
1080         /*
1081          * We'll use this way of resizing only for legacy support.
1082          * For newer userspace (VIRTIO_CONSOLE_F_MULTPORT+), use
1083          * control messages to indicate console size changes so that
1084          * it can be done per-port
1085          */
1086         resize_console(find_port_by_id(portdev, 0));
1087 }
1088
1089 static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
1090 {
1091         struct port_buffer *buf;
1092         unsigned int nr_added_bufs;
1093         int ret;
1094
1095         nr_added_bufs = 0;
1096         do {
1097                 buf = alloc_buf(PAGE_SIZE);
1098                 if (!buf)
1099                         break;
1100
1101                 spin_lock_irq(lock);
1102                 ret = add_inbuf(vq, buf);
1103                 if (ret < 0) {
1104                         spin_unlock_irq(lock);
1105                         free_buf(buf);
1106                         break;
1107                 }
1108                 nr_added_bufs++;
1109                 spin_unlock_irq(lock);
1110         } while (ret > 0);
1111
1112         return nr_added_bufs;
1113 }
1114
1115 static int add_port(struct ports_device *portdev, u32 id)
1116 {
1117         char debugfs_name[16];
1118         struct port *port;
1119         struct port_buffer *buf;
1120         dev_t devt;
1121         unsigned int nr_added_bufs;
1122         int err;
1123
1124         port = kmalloc(sizeof(*port), GFP_KERNEL);
1125         if (!port) {
1126                 err = -ENOMEM;
1127                 goto fail;
1128         }
1129
1130         port->portdev = portdev;
1131         port->id = id;
1132
1133         port->name = NULL;
1134         port->inbuf = NULL;
1135         port->cons.hvc = NULL;
1136
1137         port->host_connected = port->guest_connected = false;
1138
1139         port->in_vq = portdev->in_vqs[port->id];
1140         port->out_vq = portdev->out_vqs[port->id];
1141
1142         cdev_init(&port->cdev, &port_fops);
1143
1144         devt = MKDEV(portdev->chr_major, id);
1145         err = cdev_add(&port->cdev, devt, 1);
1146         if (err < 0) {
1147                 dev_err(&port->portdev->vdev->dev,
1148                         "Error %d adding cdev for port %u\n", err, id);
1149                 goto free_port;
1150         }
1151         port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1152                                   devt, port, "vport%up%u",
1153                                   port->portdev->drv_index, id);
1154         if (IS_ERR(port->dev)) {
1155                 err = PTR_ERR(port->dev);
1156                 dev_err(&port->portdev->vdev->dev,
1157                         "Error %d creating device for port %u\n",
1158                         err, id);
1159                 goto free_cdev;
1160         }
1161
1162         spin_lock_init(&port->inbuf_lock);
1163         init_waitqueue_head(&port->waitqueue);
1164
1165         /* Fill the in_vq with buffers so the host can send us data. */
1166         nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1167         if (!nr_added_bufs) {
1168                 dev_err(port->dev, "Error allocating inbufs\n");
1169                 err = -ENOMEM;
1170                 goto free_device;
1171         }
1172
1173         /*
1174          * If we're not using multiport support, this has to be a console port
1175          */
1176         if (!use_multiport(port->portdev)) {
1177                 err = init_port_console(port);
1178                 if (err)
1179                         goto free_inbufs;
1180         }
1181
1182         spin_lock_irq(&portdev->ports_lock);
1183         list_add_tail(&port->list, &port->portdev->ports);
1184         spin_unlock_irq(&portdev->ports_lock);
1185
1186         /*
1187          * Tell the Host we're set so that it can send us various
1188          * configuration parameters for this port (eg, port name,
1189          * caching, whether this is a console port, etc.)
1190          */
1191         send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1192
1193         if (pdrvdata.debugfs_dir) {
1194                 /*
1195                  * Finally, create the debugfs file that we can use to
1196                  * inspect a port's state at any time
1197                  */
1198                 sprintf(debugfs_name, "vport%up%u",
1199                         port->portdev->drv_index, id);
1200                 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1201                                                          pdrvdata.debugfs_dir,
1202                                                          port,
1203                                                          &port_debugfs_ops);
1204         }
1205         return 0;
1206
1207 free_inbufs:
1208         while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1209                 free_buf(buf);
1210 free_device:
1211         device_destroy(pdrvdata.class, port->dev->devt);
1212 free_cdev:
1213         cdev_del(&port->cdev);
1214 free_port:
1215         kfree(port);
1216 fail:
1217         /* The host might want to notify management sw about port add failure */
1218         send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 0);
1219         return err;
1220 }
1221
1222 /*
1223  * The workhandler for config-space updates.
1224  *
1225  * This is called when ports are hot-added.
1226  */
1227 static void config_work_handler(struct work_struct *work)
1228 {
1229         struct virtio_console_config virtconconf;
1230         struct ports_device *portdev;
1231         struct virtio_device *vdev;
1232         int err;
1233
1234         portdev = container_of(work, struct ports_device, config_work);
1235
1236         vdev = portdev->vdev;
1237         vdev->config->get(vdev,
1238                           offsetof(struct virtio_console_config, nr_ports),
1239                           &virtconconf.nr_ports,
1240                           sizeof(virtconconf.nr_ports));
1241
1242         if (portdev->config.nr_ports == virtconconf.nr_ports) {
1243                 /*
1244                  * Port 0 got hot-added.  Since we already did all the
1245                  * other initialisation for it, just tell the Host
1246                  * that the port is ready if we find the port.  In
1247                  * case the port was hot-removed earlier, we call
1248                  * add_port to add the port.
1249                  */
1250                 struct port *port;
1251
1252                 port = find_port_by_id(portdev, 0);
1253                 if (!port)
1254                         add_port(portdev, 0);
1255                 else
1256                         send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1257                 return;
1258         }
1259         if (virtconconf.nr_ports > portdev->config.max_nr_ports) {
1260                 dev_warn(&vdev->dev,
1261                          "More ports specified (%u) than allowed (%u)",
1262                          portdev->config.nr_ports + 1,
1263                          portdev->config.max_nr_ports);
1264                 return;
1265         }
1266         if (virtconconf.nr_ports < portdev->config.nr_ports)
1267                 return;
1268
1269         /* Hot-add ports */
1270         while (virtconconf.nr_ports - portdev->config.nr_ports) {
1271                 err = add_port(portdev, portdev->config.nr_ports);
1272                 if (err)
1273                         break;
1274                 portdev->config.nr_ports++;
1275         }
1276 }
1277
1278 static int init_vqs(struct ports_device *portdev)
1279 {
1280         vq_callback_t **io_callbacks;
1281         char **io_names;
1282         struct virtqueue **vqs;
1283         u32 i, j, nr_ports, nr_queues;
1284         int err;
1285
1286         nr_ports = portdev->config.max_nr_ports;
1287         nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
1288
1289         vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1290         if (!vqs) {
1291                 err = -ENOMEM;
1292                 goto fail;
1293         }
1294         io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1295         if (!io_callbacks) {
1296                 err = -ENOMEM;
1297                 goto free_vqs;
1298         }
1299         io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1300         if (!io_names) {
1301                 err = -ENOMEM;
1302                 goto free_callbacks;
1303         }
1304         portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1305                                   GFP_KERNEL);
1306         if (!portdev->in_vqs) {
1307                 err = -ENOMEM;
1308                 goto free_names;
1309         }
1310         portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1311                                    GFP_KERNEL);
1312         if (!portdev->out_vqs) {
1313                 err = -ENOMEM;
1314                 goto free_invqs;
1315         }
1316
1317         /*
1318          * For backward compat (newer host but older guest), the host
1319          * spawns a console port first and also inits the vqs for port
1320          * 0 before others.
1321          */
1322         j = 0;
1323         io_callbacks[j] = in_intr;
1324         io_callbacks[j + 1] = NULL;
1325         io_names[j] = "input";
1326         io_names[j + 1] = "output";
1327         j += 2;
1328
1329         if (use_multiport(portdev)) {
1330                 io_callbacks[j] = control_intr;
1331                 io_callbacks[j + 1] = NULL;
1332                 io_names[j] = "control-i";
1333                 io_names[j + 1] = "control-o";
1334
1335                 for (i = 1; i < nr_ports; i++) {
1336                         j += 2;
1337                         io_callbacks[j] = in_intr;
1338                         io_callbacks[j + 1] = NULL;
1339                         io_names[j] = "input";
1340                         io_names[j + 1] = "output";
1341                 }
1342         }
1343         /* Find the queues. */
1344         err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1345                                               io_callbacks,
1346                                               (const char **)io_names);
1347         if (err)
1348                 goto free_outvqs;
1349
1350         j = 0;
1351         portdev->in_vqs[0] = vqs[0];
1352         portdev->out_vqs[0] = vqs[1];
1353         j += 2;
1354         if (use_multiport(portdev)) {
1355                 portdev->c_ivq = vqs[j];
1356                 portdev->c_ovq = vqs[j + 1];
1357
1358                 for (i = 1; i < nr_ports; i++) {
1359                         j += 2;
1360                         portdev->in_vqs[i] = vqs[j];
1361                         portdev->out_vqs[i] = vqs[j + 1];
1362                 }
1363         }
1364         kfree(io_callbacks);
1365         kfree(io_names);
1366         kfree(vqs);
1367
1368         return 0;
1369
1370 free_names:
1371         kfree(io_names);
1372 free_callbacks:
1373         kfree(io_callbacks);
1374 free_outvqs:
1375         kfree(portdev->out_vqs);
1376 free_invqs:
1377         kfree(portdev->in_vqs);
1378 free_vqs:
1379         kfree(vqs);
1380 fail:
1381         return err;
1382 }
1383
1384 static const struct file_operations portdev_fops = {
1385         .owner = THIS_MODULE,
1386 };
1387
1388 /*
1389  * Once we're further in boot, we get probed like any other virtio
1390  * device.
1391  *
1392  * If the host also supports multiple console ports, we check the
1393  * config space to see how many ports the host has spawned.  We
1394  * initialize each port found.
1395  */
1396 static int __devinit virtcons_probe(struct virtio_device *vdev)
1397 {
1398         struct ports_device *portdev;
1399         u32 i;
1400         int err;
1401         bool multiport;
1402
1403         portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1404         if (!portdev) {
1405                 err = -ENOMEM;
1406                 goto fail;
1407         }
1408
1409         /* Attach this portdev to this virtio_device, and vice-versa. */
1410         portdev->vdev = vdev;
1411         vdev->priv = portdev;
1412
1413         spin_lock_irq(&pdrvdata_lock);
1414         portdev->drv_index = pdrvdata.index++;
1415         spin_unlock_irq(&pdrvdata_lock);
1416
1417         portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1418                                              &portdev_fops);
1419         if (portdev->chr_major < 0) {
1420                 dev_err(&vdev->dev,
1421                         "Error %d registering chrdev for device %u\n",
1422                         portdev->chr_major, portdev->drv_index);
1423                 err = portdev->chr_major;
1424                 goto free;
1425         }
1426
1427         multiport = false;
1428         portdev->config.nr_ports = 1;
1429         portdev->config.max_nr_ports = 1;
1430         if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1431                 multiport = true;
1432                 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1433
1434                 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1435                                                  nr_ports),
1436                                   &portdev->config.nr_ports,
1437                                   sizeof(portdev->config.nr_ports));
1438                 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1439                                                  max_nr_ports),
1440                                   &portdev->config.max_nr_ports,
1441                                   sizeof(portdev->config.max_nr_ports));
1442                 if (portdev->config.nr_ports > portdev->config.max_nr_ports) {
1443                         dev_warn(&vdev->dev,
1444                                  "More ports (%u) specified than allowed (%u). Will init %u ports.",
1445                                  portdev->config.nr_ports,
1446                                  portdev->config.max_nr_ports,
1447                                  portdev->config.max_nr_ports);
1448
1449                         portdev->config.nr_ports = portdev->config.max_nr_ports;
1450                 }
1451         }
1452
1453         /* Let the Host know we support multiple ports.*/
1454         vdev->config->finalize_features(vdev);
1455
1456         err = init_vqs(portdev);
1457         if (err < 0) {
1458                 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
1459                 goto free_chrdev;
1460         }
1461
1462         spin_lock_init(&portdev->ports_lock);
1463         INIT_LIST_HEAD(&portdev->ports);
1464
1465         if (multiport) {
1466                 unsigned int nr_added_bufs;
1467
1468                 spin_lock_init(&portdev->cvq_lock);
1469                 INIT_WORK(&portdev->control_work, &control_work_handler);
1470                 INIT_WORK(&portdev->config_work, &config_work_handler);
1471
1472                 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1473                 if (!nr_added_bufs) {
1474                         dev_err(&vdev->dev,
1475                                 "Error allocating buffers for control queue\n");
1476                         err = -ENOMEM;
1477                         goto free_vqs;
1478                 }
1479         }
1480
1481         for (i = 0; i < portdev->config.nr_ports; i++)
1482                 add_port(portdev, i);
1483
1484         /* Start using the new console output. */
1485         early_put_chars = NULL;
1486         return 0;
1487
1488 free_vqs:
1489         vdev->config->del_vqs(vdev);
1490         kfree(portdev->in_vqs);
1491         kfree(portdev->out_vqs);
1492 free_chrdev:
1493         unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1494 free:
1495         kfree(portdev);
1496 fail:
1497         /* The host might want to notify mgmt sw about device add failure */
1498         __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1499                            VIRTIO_CONSOLE_DEVICE_READY, 0);
1500         return err;
1501 }
1502
1503 static void virtcons_remove(struct virtio_device *vdev)
1504 {
1505         struct ports_device *portdev;
1506         struct port *port, *port2;
1507         struct port_buffer *buf;
1508         unsigned int len;
1509
1510         portdev = vdev->priv;
1511
1512         cancel_work_sync(&portdev->control_work);
1513         cancel_work_sync(&portdev->config_work);
1514
1515         list_for_each_entry_safe(port, port2, &portdev->ports, list)
1516                 remove_port(port);
1517
1518         unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1519
1520         while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1521                 free_buf(buf);
1522
1523         while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1524                 free_buf(buf);
1525
1526         vdev->config->del_vqs(vdev);
1527         kfree(portdev->in_vqs);
1528         kfree(portdev->out_vqs);
1529
1530         kfree(portdev);
1531 }
1532
1533 static struct virtio_device_id id_table[] = {
1534         { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1535         { 0 },
1536 };
1537
1538 static unsigned int features[] = {
1539         VIRTIO_CONSOLE_F_SIZE,
1540         VIRTIO_CONSOLE_F_MULTIPORT,
1541 };
1542
1543 static struct virtio_driver virtio_console = {
1544         .feature_table = features,
1545         .feature_table_size = ARRAY_SIZE(features),
1546         .driver.name =  KBUILD_MODNAME,
1547         .driver.owner = THIS_MODULE,
1548         .id_table =     id_table,
1549         .probe =        virtcons_probe,
1550         .remove =       virtcons_remove,
1551         .config_changed = config_intr,
1552 };
1553
1554 static int __init init(void)
1555 {
1556         int err;
1557
1558         pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1559         if (IS_ERR(pdrvdata.class)) {
1560                 err = PTR_ERR(pdrvdata.class);
1561                 pr_err("Error %d creating virtio-ports class\n", err);
1562                 return err;
1563         }
1564
1565         pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1566         if (!pdrvdata.debugfs_dir) {
1567                 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1568                            PTR_ERR(pdrvdata.debugfs_dir));
1569         }
1570         INIT_LIST_HEAD(&pdrvdata.consoles);
1571
1572         return register_virtio_driver(&virtio_console);
1573 }
1574
1575 static void __exit fini(void)
1576 {
1577         unregister_virtio_driver(&virtio_console);
1578
1579         class_destroy(pdrvdata.class);
1580         if (pdrvdata.debugfs_dir)
1581                 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1582 }
1583 module_init(init);
1584 module_exit(fini);
1585
1586 MODULE_DEVICE_TABLE(virtio, id_table);
1587 MODULE_DESCRIPTION("Virtio console driver");
1588 MODULE_LICENSE("GPL");