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