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