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