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