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