virtio: console: Add file operations to ports for open/read/write/poll
[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
AS
19#include <linux/cdev.h>
20#include <linux/device.h>
31610434 21#include <linux/err.h>
2030fa49 22#include <linux/fs.h>
31610434 23#include <linux/init.h>
38edf58d 24#include <linux/list.h>
2030fa49
AS
25#include <linux/poll.h>
26#include <linux/sched.h>
38edf58d 27#include <linux/spinlock.h>
31610434
RR
28#include <linux/virtio.h>
29#include <linux/virtio_console.h>
2030fa49 30#include <linux/wait.h>
17634ba2 31#include <linux/workqueue.h>
31610434
RR
32#include "hvc_console.h"
33
38edf58d
AS
34/*
35 * This is a global struct for storing common data for all the devices
36 * this driver handles.
37 *
38 * Mainly, it has a linked list for all the consoles in one place so
39 * that callbacks from hvc for get_chars(), put_chars() work properly
40 * across multiple devices and multiple ports per device.
41 */
42struct ports_driver_data {
fb08bd27
AS
43 /* Used for registering chardevs */
44 struct class *class;
45
46 /* Number of devices this driver is handling */
47 unsigned int index;
48
d8a02bd5
RR
49 /*
50 * This is used to keep track of the number of hvc consoles
51 * spawned by this driver. This number is given as the first
52 * argument to hvc_alloc(). To correctly map an initial
53 * console spawned via hvc_instantiate to the console being
54 * hooked up via hvc_alloc, we need to pass the same vtermno.
55 *
56 * We also just assume the first console being initialised was
57 * the first one that got used as the initial console.
58 */
59 unsigned int next_vtermno;
60
38edf58d
AS
61 /* All the console devices handled by this driver */
62 struct list_head consoles;
63};
64static struct ports_driver_data pdrvdata;
65
66DEFINE_SPINLOCK(pdrvdata_lock);
67
4f23c573
AS
68/* This struct holds information that's relevant only for console ports */
69struct console {
70 /* We'll place all consoles in a list in the pdrvdata struct */
71 struct list_head list;
72
73 /* The hvc device associated with this console port */
74 struct hvc_struct *hvc;
75
76 /*
77 * This number identifies the number that we used to register
78 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
79 * number passed on by the hvc callbacks to us to
80 * differentiate between the other console ports handled by
81 * this driver
82 */
83 u32 vtermno;
84};
85
fdb9a054
AS
86struct port_buffer {
87 char *buf;
88
89 /* size of the buffer in *buf above */
90 size_t size;
91
92 /* used length of the buffer */
93 size_t len;
94 /* offset in the buf from which to consume data */
95 size_t offset;
96};
97
17634ba2
AS
98/*
99 * This is a per-device struct that stores data common to all the
100 * ports for that device (vdev->priv).
101 */
102struct ports_device {
103 /*
104 * Workqueue handlers where we process deferred work after
105 * notification
106 */
107 struct work_struct control_work;
108
109 struct list_head ports;
110
111 /* To protect the list of ports */
112 spinlock_t ports_lock;
113
114 /* To protect the vq operations for the control channel */
115 spinlock_t cvq_lock;
116
117 /* The current config space is stored here */
118 struct virtio_console_config config;
119
120 /* The virtio device we're associated with */
121 struct virtio_device *vdev;
122
123 /*
124 * A couple of virtqueues for the control channel: one for
125 * guest->host transfers, one for host->guest transfers
126 */
127 struct virtqueue *c_ivq, *c_ovq;
128
129 /* Array of per-port IO virtqueues */
130 struct virtqueue **in_vqs, **out_vqs;
fb08bd27
AS
131
132 /* Used for numbering devices for sysfs and debugfs */
133 unsigned int drv_index;
134
135 /* Major number for this device. Ports will be created as minors. */
136 int chr_major;
17634ba2
AS
137};
138
1c85bf35 139/* This struct holds the per-port data */
21206ede 140struct port {
17634ba2
AS
141 /* Next port in the list, head is in the ports_device */
142 struct list_head list;
143
1c85bf35
AS
144 /* Pointer to the parent virtio_console device */
145 struct ports_device *portdev;
fdb9a054
AS
146
147 /* The current buffer from which data has to be fed to readers */
148 struct port_buffer *inbuf;
21206ede 149
203baab8
AS
150 /*
151 * To protect the operations on the in_vq associated with this
152 * port. Has to be a spinlock because it can be called from
153 * interrupt context (get_char()).
154 */
155 spinlock_t inbuf_lock;
156
1c85bf35
AS
157 /* The IO vqs for this port */
158 struct virtqueue *in_vq, *out_vq;
159
4f23c573
AS
160 /*
161 * The entries in this struct will be valid if this port is
162 * hooked up to an hvc console
163 */
164 struct console cons;
17634ba2 165
fb08bd27
AS
166 /* Each port associates with a separate char device */
167 struct cdev cdev;
168 struct device *dev;
169
2030fa49
AS
170 /* A waitqueue for poll() or blocking read operations */
171 wait_queue_head_t waitqueue;
172
17634ba2
AS
173 /* The 'id' to identify the port with the Host */
174 u32 id;
2030fa49
AS
175
176 /* Is the host device open */
177 bool host_connected;
21206ede 178};
31610434 179
971f3390
RR
180/* This is the very early arch-specified put chars function. */
181static int (*early_put_chars)(u32, const char *, int);
182
38edf58d
AS
183static struct port *find_port_by_vtermno(u32 vtermno)
184{
185 struct port *port;
4f23c573 186 struct console *cons;
38edf58d
AS
187 unsigned long flags;
188
189 spin_lock_irqsave(&pdrvdata_lock, flags);
4f23c573
AS
190 list_for_each_entry(cons, &pdrvdata.consoles, list) {
191 if (cons->vtermno == vtermno) {
192 port = container_of(cons, struct port, cons);
38edf58d 193 goto out;
4f23c573 194 }
38edf58d
AS
195 }
196 port = NULL;
197out:
198 spin_unlock_irqrestore(&pdrvdata_lock, flags);
199 return port;
200}
201
17634ba2
AS
202static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
203{
204 struct port *port;
205 unsigned long flags;
206
207 spin_lock_irqsave(&portdev->ports_lock, flags);
208 list_for_each_entry(port, &portdev->ports, list)
209 if (port->id == id)
210 goto out;
211 port = NULL;
212out:
213 spin_unlock_irqrestore(&portdev->ports_lock, flags);
214
215 return port;
216}
217
203baab8
AS
218static struct port *find_port_by_vq(struct ports_device *portdev,
219 struct virtqueue *vq)
220{
221 struct port *port;
203baab8
AS
222 unsigned long flags;
223
17634ba2
AS
224 spin_lock_irqsave(&portdev->ports_lock, flags);
225 list_for_each_entry(port, &portdev->ports, list)
203baab8
AS
226 if (port->in_vq == vq || port->out_vq == vq)
227 goto out;
203baab8
AS
228 port = NULL;
229out:
17634ba2 230 spin_unlock_irqrestore(&portdev->ports_lock, flags);
203baab8
AS
231 return port;
232}
233
17634ba2
AS
234static bool is_console_port(struct port *port)
235{
236 if (port->cons.hvc)
237 return true;
238 return false;
239}
240
241static inline bool use_multiport(struct ports_device *portdev)
242{
243 /*
244 * This condition can be true when put_chars is called from
245 * early_init
246 */
247 if (!portdev->vdev)
248 return 0;
249 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
250}
251
fdb9a054
AS
252static void free_buf(struct port_buffer *buf)
253{
254 kfree(buf->buf);
255 kfree(buf);
256}
257
258static struct port_buffer *alloc_buf(size_t buf_size)
259{
260 struct port_buffer *buf;
261
262 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
263 if (!buf)
264 goto fail;
265 buf->buf = kzalloc(buf_size, GFP_KERNEL);
266 if (!buf->buf)
267 goto free_buf;
268 buf->len = 0;
269 buf->offset = 0;
270 buf->size = buf_size;
271 return buf;
272
273free_buf:
274 kfree(buf);
275fail:
276 return NULL;
277}
278
a3cde449
AS
279/* Callers should take appropriate locks */
280static void *get_inbuf(struct port *port)
281{
282 struct port_buffer *buf;
283 struct virtqueue *vq;
284 unsigned int len;
285
286 vq = port->in_vq;
287 buf = vq->vq_ops->get_buf(vq, &len);
288 if (buf) {
289 buf->len = len;
290 buf->offset = 0;
291 }
292 return buf;
293}
294
e27b5198
AS
295/*
296 * Create a scatter-gather list representing our input buffer and put
297 * it in the queue.
298 *
299 * Callers should take appropriate locks.
300 */
203baab8 301static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
e27b5198
AS
302{
303 struct scatterlist sg[1];
203baab8 304 int ret;
1c85bf35 305
e27b5198
AS
306 sg_init_one(sg, buf->buf, buf->size);
307
203baab8 308 ret = vq->vq_ops->add_buf(vq, sg, 0, 1, buf);
e27b5198 309 vq->vq_ops->kick(vq);
203baab8
AS
310 return ret;
311}
312
313static bool port_has_data(struct port *port)
314{
315 unsigned long flags;
316 bool ret;
317
318 ret = false;
319 spin_lock_irqsave(&port->inbuf_lock, flags);
320 if (port->inbuf)
321 ret = true;
322 spin_unlock_irqrestore(&port->inbuf_lock, flags);
323
324 return ret;
325}
326
17634ba2
AS
327static ssize_t send_control_msg(struct port *port, unsigned int event,
328 unsigned int value)
329{
330 struct scatterlist sg[1];
331 struct virtio_console_control cpkt;
332 struct virtqueue *vq;
333 int len;
334
335 if (!use_multiport(port->portdev))
336 return 0;
337
338 cpkt.id = port->id;
339 cpkt.event = event;
340 cpkt.value = value;
341
342 vq = port->portdev->c_ovq;
343
344 sg_init_one(sg, &cpkt, sizeof(cpkt));
345 if (vq->vq_ops->add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
346 vq->vq_ops->kick(vq);
347 while (!vq->vq_ops->get_buf(vq, &len))
348 cpu_relax();
349 }
350 return 0;
351}
352
f997f00b
AS
353static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
354{
355 struct scatterlist sg[1];
356 struct virtqueue *out_vq;
357 ssize_t ret;
358 unsigned int len;
359
360 out_vq = port->out_vq;
361
362 sg_init_one(sg, in_buf, in_count);
363 ret = out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, in_buf);
364
365 /* Tell Host to go! */
366 out_vq->vq_ops->kick(out_vq);
367
368 if (ret < 0) {
369 len = 0;
370 goto fail;
371 }
372
373 /*
374 * Wait till the host acknowledges it pushed out the data we
375 * sent. Also ensure we return to userspace the number of
376 * bytes that were successfully consumed by the host.
377 */
378 while (!out_vq->vq_ops->get_buf(out_vq, &len))
379 cpu_relax();
380fail:
381 /* We're expected to return the amount of data we wrote */
382 return len;
383}
384
203baab8
AS
385/*
386 * Give out the data that's requested from the buffer that we have
387 * queued up.
388 */
b766ceed
AS
389static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
390 bool to_user)
203baab8
AS
391{
392 struct port_buffer *buf;
393 unsigned long flags;
394
395 if (!out_count || !port_has_data(port))
396 return 0;
397
398 buf = port->inbuf;
b766ceed 399 out_count = min(out_count, buf->len - buf->offset);
203baab8 400
b766ceed
AS
401 if (to_user) {
402 ssize_t ret;
403
404 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
405 if (ret)
406 return -EFAULT;
407 } else {
408 memcpy(out_buf, buf->buf + buf->offset, out_count);
409 }
203baab8 410
203baab8
AS
411 buf->offset += out_count;
412
413 if (buf->offset == buf->len) {
414 /*
415 * We're done using all the data in this buffer.
416 * Re-queue so that the Host can send us more data.
417 */
418 spin_lock_irqsave(&port->inbuf_lock, flags);
419 port->inbuf = NULL;
420
421 if (add_inbuf(port->in_vq, buf) < 0)
fb08bd27 422 dev_warn(port->dev, "failed add_buf\n");
203baab8
AS
423
424 spin_unlock_irqrestore(&port->inbuf_lock, flags);
425 }
b766ceed 426 /* Return the number of bytes actually copied */
203baab8 427 return out_count;
e27b5198
AS
428}
429
2030fa49
AS
430/* The condition that must be true for polling to end */
431static bool wait_is_over(struct port *port)
432{
433 return port_has_data(port) || !port->host_connected;
434}
435
436static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
437 size_t count, loff_t *offp)
438{
439 struct port *port;
440 ssize_t ret;
441
442 port = filp->private_data;
443
444 if (!port_has_data(port)) {
445 /*
446 * If nothing's connected on the host just return 0 in
447 * case of list_empty; this tells the userspace app
448 * that there's no connection
449 */
450 if (!port->host_connected)
451 return 0;
452 if (filp->f_flags & O_NONBLOCK)
453 return -EAGAIN;
454
455 ret = wait_event_interruptible(port->waitqueue,
456 wait_is_over(port));
457 if (ret < 0)
458 return ret;
459 }
460 /*
461 * We could've received a disconnection message while we were
462 * waiting for more data.
463 *
464 * This check is not clubbed in the if() statement above as we
465 * might receive some data as well as the host could get
466 * disconnected after we got woken up from our wait. So we
467 * really want to give off whatever data we have and only then
468 * check for host_connected.
469 */
470 if (!port_has_data(port) && !port->host_connected)
471 return 0;
472
473 return fill_readbuf(port, ubuf, count, true);
474}
475
476static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
477 size_t count, loff_t *offp)
478{
479 struct port *port;
480 char *buf;
481 ssize_t ret;
482
483 port = filp->private_data;
484
485 count = min((size_t)(32 * 1024), count);
486
487 buf = kmalloc(count, GFP_KERNEL);
488 if (!buf)
489 return -ENOMEM;
490
491 ret = copy_from_user(buf, ubuf, count);
492 if (ret) {
493 ret = -EFAULT;
494 goto free_buf;
495 }
496
497 ret = send_buf(port, buf, count);
498free_buf:
499 kfree(buf);
500 return ret;
501}
502
503static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
504{
505 struct port *port;
506 unsigned int ret;
507
508 port = filp->private_data;
509 poll_wait(filp, &port->waitqueue, wait);
510
511 ret = 0;
512 if (port->inbuf)
513 ret |= POLLIN | POLLRDNORM;
514 if (port->host_connected)
515 ret |= POLLOUT;
516 if (!port->host_connected)
517 ret |= POLLHUP;
518
519 return ret;
520}
521
522static int port_fops_release(struct inode *inode, struct file *filp)
523{
524 struct port *port;
525
526 port = filp->private_data;
527
528 /* Notify host of port being closed */
529 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
530
531 return 0;
532}
533
534static int port_fops_open(struct inode *inode, struct file *filp)
535{
536 struct cdev *cdev = inode->i_cdev;
537 struct port *port;
538
539 port = container_of(cdev, struct port, cdev);
540 filp->private_data = port;
541
542 /*
543 * Don't allow opening of console port devices -- that's done
544 * via /dev/hvc
545 */
546 if (is_console_port(port))
547 return -ENXIO;
548
549 /* Notify host of port being opened */
550 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
551
552 return 0;
553}
554
555/*
556 * The file operations that we support: programs in the guest can open
557 * a console device, read from it, write to it, poll for data and
558 * close it. The devices are at
559 * /dev/vport<device number>p<port number>
560 */
561static const struct file_operations port_fops = {
562 .owner = THIS_MODULE,
563 .open = port_fops_open,
564 .read = port_fops_read,
565 .write = port_fops_write,
566 .poll = port_fops_poll,
567 .release = port_fops_release,
568};
569
a23ea924
RR
570/*
571 * The put_chars() callback is pretty straightforward.
31610434 572 *
a23ea924
RR
573 * We turn the characters into a scatter-gather list, add it to the
574 * output queue and then kick the Host. Then we sit here waiting for
575 * it to finish: inefficient in theory, but in practice
576 * implementations will do it immediately (lguest's Launcher does).
577 */
31610434
RR
578static int put_chars(u32 vtermno, const char *buf, int count)
579{
21206ede 580 struct port *port;
38edf58d
AS
581
582 port = find_port_by_vtermno(vtermno);
583 if (!port)
584 return 0;
31610434 585
971f3390
RR
586 if (unlikely(early_put_chars))
587 return early_put_chars(vtermno, buf, count);
588
f997f00b 589 return send_buf(port, (void *)buf, count);
31610434
RR
590}
591
a23ea924
RR
592/*
593 * get_chars() is the callback from the hvc_console infrastructure
594 * when an interrupt is received.
31610434 595 *
203baab8
AS
596 * We call out to fill_readbuf that gets us the required data from the
597 * buffers that are queued up.
a23ea924 598 */
31610434
RR
599static int get_chars(u32 vtermno, char *buf, int count)
600{
21206ede
RR
601 struct port *port;
602
38edf58d
AS
603 port = find_port_by_vtermno(vtermno);
604 if (!port)
605 return 0;
21206ede 606
31610434 607 /* If we don't have an input queue yet, we can't get input. */
21206ede 608 BUG_ON(!port->in_vq);
31610434 609
b766ceed 610 return fill_readbuf(port, buf, count, false);
31610434 611}
31610434 612
cb06e367 613static void resize_console(struct port *port)
c2983458 614{
cb06e367 615 struct virtio_device *vdev;
c2983458
CB
616 struct winsize ws;
617
cb06e367
AS
618 vdev = port->portdev->vdev;
619 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
620 vdev->config->get(vdev,
621 offsetof(struct virtio_console_config, cols),
622 &ws.ws_col, sizeof(u16));
623 vdev->config->get(vdev,
624 offsetof(struct virtio_console_config, rows),
625 &ws.ws_row, sizeof(u16));
4f23c573 626 hvc_resize(port->cons.hvc, ws);
c2983458
CB
627 }
628}
629
cb06e367
AS
630static void virtcons_apply_config(struct virtio_device *vdev)
631{
632 resize_console(find_port_by_vtermno(0));
633}
634
38edf58d 635/* We set the configuration at this point, since we now have a tty */
91fcad19
CB
636static int notifier_add_vio(struct hvc_struct *hp, int data)
637{
38edf58d
AS
638 struct port *port;
639
640 port = find_port_by_vtermno(hp->vtermno);
641 if (!port)
642 return -EINVAL;
643
91fcad19 644 hp->irq_requested = 1;
cb06e367 645 resize_console(port);
c2983458 646
91fcad19
CB
647 return 0;
648}
649
650static void notifier_del_vio(struct hvc_struct *hp, int data)
651{
652 hp->irq_requested = 0;
653}
654
17634ba2 655/* The operations for console ports. */
1dff3996 656static const struct hv_ops hv_ops = {
971f3390
RR
657 .get_chars = get_chars,
658 .put_chars = put_chars,
659 .notifier_add = notifier_add_vio,
660 .notifier_del = notifier_del_vio,
661 .notifier_hangup = notifier_del_vio,
662};
663
664/*
665 * Console drivers are initialized very early so boot messages can go
666 * out, so we do things slightly differently from the generic virtio
667 * initialization of the net and block drivers.
668 *
669 * At this stage, the console is output-only. It's too early to set
670 * up a virtqueue, so we let the drivers do some boutique early-output
671 * thing.
672 */
673int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
674{
675 early_put_chars = put_chars;
676 return hvc_instantiate(0, 0, &hv_ops);
677}
678
17634ba2 679int init_port_console(struct port *port)
cfa6d379
AS
680{
681 int ret;
682
683 /*
684 * The Host's telling us this port is a console port. Hook it
685 * up with an hvc console.
686 *
687 * To set up and manage our virtual console, we call
688 * hvc_alloc().
689 *
690 * The first argument of hvc_alloc() is the virtual console
691 * number. The second argument is the parameter for the
692 * notification mechanism (like irq number). We currently
693 * leave this as zero, virtqueues have implicit notifications.
694 *
695 * The third argument is a "struct hv_ops" containing the
696 * put_chars() get_chars(), notifier_add() and notifier_del()
697 * pointers. The final argument is the output buffer size: we
698 * can do any size, so we put PAGE_SIZE here.
699 */
700 port->cons.vtermno = pdrvdata.next_vtermno;
701
702 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
703 if (IS_ERR(port->cons.hvc)) {
704 ret = PTR_ERR(port->cons.hvc);
705 port->cons.hvc = NULL;
706 return ret;
707 }
708 spin_lock_irq(&pdrvdata_lock);
709 pdrvdata.next_vtermno++;
710 list_add_tail(&port->cons.list, &pdrvdata.consoles);
711 spin_unlock_irq(&pdrvdata_lock);
712
2030fa49
AS
713 /* Notify host of port being opened */
714 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
715
cfa6d379
AS
716 return 0;
717}
718
17634ba2
AS
719/* Any private messages that the Host and Guest want to share */
720static void handle_control_message(struct ports_device *portdev,
721 struct port_buffer *buf)
722{
723 struct virtio_console_control *cpkt;
724 struct port *port;
725
726 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
727
728 port = find_port_by_id(portdev, cpkt->id);
729 if (!port) {
730 /* No valid header at start of buffer. Drop it. */
731 dev_dbg(&portdev->vdev->dev,
732 "Invalid index %u in control packet\n", cpkt->id);
733 return;
734 }
735
736 switch (cpkt->event) {
737 case VIRTIO_CONSOLE_CONSOLE_PORT:
738 if (!cpkt->value)
739 break;
740 if (is_console_port(port))
741 break;
742
743 init_port_console(port);
744 /*
745 * Could remove the port here in case init fails - but
746 * have to notify the host first.
747 */
748 break;
749 case VIRTIO_CONSOLE_RESIZE:
750 if (!is_console_port(port))
751 break;
752 port->cons.hvc->irq_requested = 1;
753 resize_console(port);
754 break;
2030fa49
AS
755 case VIRTIO_CONSOLE_PORT_OPEN:
756 port->host_connected = cpkt->value;
757 wake_up_interruptible(&port->waitqueue);
758 break;
17634ba2
AS
759 }
760}
761
762static void control_work_handler(struct work_struct *work)
763{
764 struct ports_device *portdev;
765 struct virtqueue *vq;
766 struct port_buffer *buf;
767 unsigned int len;
768
769 portdev = container_of(work, struct ports_device, control_work);
770 vq = portdev->c_ivq;
771
772 spin_lock(&portdev->cvq_lock);
773 while ((buf = vq->vq_ops->get_buf(vq, &len))) {
774 spin_unlock(&portdev->cvq_lock);
775
776 buf->len = len;
777 buf->offset = 0;
778
779 handle_control_message(portdev, buf);
780
781 spin_lock(&portdev->cvq_lock);
782 if (add_inbuf(portdev->c_ivq, buf) < 0) {
783 dev_warn(&portdev->vdev->dev,
784 "Error adding buffer to queue\n");
785 free_buf(buf);
786 }
787 }
788 spin_unlock(&portdev->cvq_lock);
789}
790
791static void in_intr(struct virtqueue *vq)
792{
793 struct port *port;
794 unsigned long flags;
795
796 port = find_port_by_vq(vq->vdev->priv, vq);
797 if (!port)
798 return;
799
800 spin_lock_irqsave(&port->inbuf_lock, flags);
801 port->inbuf = get_inbuf(port);
802
803 spin_unlock_irqrestore(&port->inbuf_lock, flags);
804
2030fa49
AS
805 wake_up_interruptible(&port->waitqueue);
806
17634ba2
AS
807 if (is_console_port(port) && hvc_poll(port->cons.hvc))
808 hvc_kick();
809}
810
811static void control_intr(struct virtqueue *vq)
812{
813 struct ports_device *portdev;
814
815 portdev = vq->vdev->priv;
816 schedule_work(&portdev->control_work);
817}
818
819static void fill_queue(struct virtqueue *vq, spinlock_t *lock)
820{
821 struct port_buffer *buf;
822 int ret;
823
824 do {
825 buf = alloc_buf(PAGE_SIZE);
826 if (!buf)
827 break;
828
829 spin_lock_irq(lock);
830 ret = add_inbuf(vq, buf);
831 if (ret < 0) {
832 spin_unlock_irq(lock);
833 free_buf(buf);
834 break;
835 }
836 spin_unlock_irq(lock);
837 } while (ret > 0);
838}
839
840static int add_port(struct ports_device *portdev, u32 id)
d8a02bd5 841{
21206ede 842 struct port *port;
203baab8 843 struct port_buffer *inbuf;
fb08bd27 844 dev_t devt;
31610434 845 int err;
31610434 846
1c85bf35 847 port = kmalloc(sizeof(*port), GFP_KERNEL);
d8a02bd5
RR
848 if (!port) {
849 err = -ENOMEM;
850 goto fail;
f550804a 851 }
73954488 852
1c85bf35 853 port->portdev = portdev;
17634ba2 854 port->id = id;
203baab8
AS
855
856 port->inbuf = NULL;
17634ba2 857 port->cons.hvc = NULL;
203baab8 858
2030fa49
AS
859 port->host_connected = false;
860
17634ba2
AS
861 port->in_vq = portdev->in_vqs[port->id];
862 port->out_vq = portdev->out_vqs[port->id];
31610434 863
2030fa49 864 cdev_init(&port->cdev, &port_fops);
fb08bd27
AS
865
866 devt = MKDEV(portdev->chr_major, id);
867 err = cdev_add(&port->cdev, devt, 1);
868 if (err < 0) {
869 dev_err(&port->portdev->vdev->dev,
870 "Error %d adding cdev for port %u\n", err, id);
871 goto free_port;
872 }
873 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
874 devt, port, "vport%up%u",
875 port->portdev->drv_index, id);
876 if (IS_ERR(port->dev)) {
877 err = PTR_ERR(port->dev);
878 dev_err(&port->portdev->vdev->dev,
879 "Error %d creating device for port %u\n",
880 err, id);
881 goto free_cdev;
882 }
883
203baab8 884 spin_lock_init(&port->inbuf_lock);
2030fa49 885 init_waitqueue_head(&port->waitqueue);
203baab8
AS
886
887 inbuf = alloc_buf(PAGE_SIZE);
888 if (!inbuf) {
1c85bf35 889 err = -ENOMEM;
fb08bd27 890 goto free_device;
1c85bf35 891 }
31610434 892
203baab8
AS
893 /* Register the input buffer the first time. */
894 add_inbuf(port->in_vq, inbuf);
895
17634ba2
AS
896 /*
897 * If we're not using multiport support, this has to be a console port
898 */
899 if (!use_multiport(port->portdev)) {
900 err = init_port_console(port);
901 if (err)
902 goto free_inbuf;
903 }
904
905 spin_lock_irq(&portdev->ports_lock);
906 list_add_tail(&port->list, &port->portdev->ports);
907 spin_unlock_irq(&portdev->ports_lock);
908
909 /*
910 * Tell the Host we're set so that it can send us various
911 * configuration parameters for this port (eg, port name,
912 * caching, whether this is a console port, etc.)
913 */
914 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
38edf58d 915
1c85bf35
AS
916 return 0;
917
918free_inbuf:
203baab8 919 free_buf(inbuf);
fb08bd27
AS
920free_device:
921 device_destroy(pdrvdata.class, port->dev->devt);
922free_cdev:
923 cdev_del(&port->cdev);
1c85bf35
AS
924free_port:
925 kfree(port);
926fail:
927 return err;
928}
929
2658a79a
AS
930static int init_vqs(struct ports_device *portdev)
931{
932 vq_callback_t **io_callbacks;
933 char **io_names;
934 struct virtqueue **vqs;
17634ba2 935 u32 i, j, nr_ports, nr_queues;
2658a79a
AS
936 int err;
937
17634ba2
AS
938 nr_ports = portdev->config.max_nr_ports;
939 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
2658a79a
AS
940
941 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
942 if (!vqs) {
943 err = -ENOMEM;
944 goto fail;
945 }
946 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
947 if (!io_callbacks) {
948 err = -ENOMEM;
949 goto free_vqs;
950 }
951 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
952 if (!io_names) {
953 err = -ENOMEM;
954 goto free_callbacks;
955 }
956 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
957 GFP_KERNEL);
958 if (!portdev->in_vqs) {
959 err = -ENOMEM;
960 goto free_names;
961 }
962 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
963 GFP_KERNEL);
964 if (!portdev->out_vqs) {
965 err = -ENOMEM;
966 goto free_invqs;
967 }
968
17634ba2
AS
969 /*
970 * For backward compat (newer host but older guest), the host
971 * spawns a console port first and also inits the vqs for port
972 * 0 before others.
973 */
974 j = 0;
975 io_callbacks[j] = in_intr;
976 io_callbacks[j + 1] = NULL;
977 io_names[j] = "input";
978 io_names[j + 1] = "output";
979 j += 2;
980
981 if (use_multiport(portdev)) {
982 io_callbacks[j] = control_intr;
983 io_callbacks[j + 1] = NULL;
984 io_names[j] = "control-i";
985 io_names[j + 1] = "control-o";
986
987 for (i = 1; i < nr_ports; i++) {
988 j += 2;
989 io_callbacks[j] = in_intr;
990 io_callbacks[j + 1] = NULL;
991 io_names[j] = "input";
992 io_names[j + 1] = "output";
993 }
994 }
2658a79a
AS
995 /* Find the queues. */
996 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
997 io_callbacks,
998 (const char **)io_names);
999 if (err)
1000 goto free_outvqs;
1001
17634ba2 1002 j = 0;
2658a79a
AS
1003 portdev->in_vqs[0] = vqs[0];
1004 portdev->out_vqs[0] = vqs[1];
17634ba2
AS
1005 j += 2;
1006 if (use_multiport(portdev)) {
1007 portdev->c_ivq = vqs[j];
1008 portdev->c_ovq = vqs[j + 1];
1009
1010 for (i = 1; i < nr_ports; i++) {
1011 j += 2;
1012 portdev->in_vqs[i] = vqs[j];
1013 portdev->out_vqs[i] = vqs[j + 1];
1014 }
1015 }
2658a79a
AS
1016 kfree(io_callbacks);
1017 kfree(io_names);
1018 kfree(vqs);
1019
1020 return 0;
1021
1022free_names:
1023 kfree(io_names);
1024free_callbacks:
1025 kfree(io_callbacks);
1026free_outvqs:
1027 kfree(portdev->out_vqs);
1028free_invqs:
1029 kfree(portdev->in_vqs);
1030free_vqs:
1031 kfree(vqs);
1032fail:
1033 return err;
1034}
1035
fb08bd27
AS
1036static const struct file_operations portdev_fops = {
1037 .owner = THIS_MODULE,
1038};
1039
1c85bf35
AS
1040/*
1041 * Once we're further in boot, we get probed like any other virtio
1042 * device.
17634ba2
AS
1043 *
1044 * If the host also supports multiple console ports, we check the
1045 * config space to see how many ports the host has spawned. We
1046 * initialize each port found.
1c85bf35
AS
1047 */
1048static int __devinit virtcons_probe(struct virtio_device *vdev)
1049{
1c85bf35 1050 struct ports_device *portdev;
17634ba2 1051 u32 i;
1c85bf35 1052 int err;
17634ba2 1053 bool multiport;
1c85bf35
AS
1054
1055 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1056 if (!portdev) {
1057 err = -ENOMEM;
1058 goto fail;
1059 }
1060
1061 /* Attach this portdev to this virtio_device, and vice-versa. */
1062 portdev->vdev = vdev;
1063 vdev->priv = portdev;
1064
fb08bd27
AS
1065 spin_lock_irq(&pdrvdata_lock);
1066 portdev->drv_index = pdrvdata.index++;
1067 spin_unlock_irq(&pdrvdata_lock);
1068
1069 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1070 &portdev_fops);
1071 if (portdev->chr_major < 0) {
1072 dev_err(&vdev->dev,
1073 "Error %d registering chrdev for device %u\n",
1074 portdev->chr_major, portdev->drv_index);
1075 err = portdev->chr_major;
1076 goto free;
1077 }
1078
17634ba2
AS
1079 multiport = false;
1080 portdev->config.nr_ports = 1;
1081 portdev->config.max_nr_ports = 1;
1082 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1083 multiport = true;
1084 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1085
1086 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1087 nr_ports),
1088 &portdev->config.nr_ports,
1089 sizeof(portdev->config.nr_ports));
1090 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1091 max_nr_ports),
1092 &portdev->config.max_nr_ports,
1093 sizeof(portdev->config.max_nr_ports));
1094 if (portdev->config.nr_ports > portdev->config.max_nr_ports) {
1095 dev_warn(&vdev->dev,
1096 "More ports (%u) specified than allowed (%u). Will init %u ports.",
1097 portdev->config.nr_ports,
1098 portdev->config.max_nr_ports,
1099 portdev->config.max_nr_ports);
1100
1101 portdev->config.nr_ports = portdev->config.max_nr_ports;
1102 }
1103 }
1104
1105 /* Let the Host know we support multiple ports.*/
1106 vdev->config->finalize_features(vdev);
1107
2658a79a
AS
1108 err = init_vqs(portdev);
1109 if (err < 0) {
1110 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
fb08bd27 1111 goto free_chrdev;
2658a79a 1112 }
1c85bf35 1113
17634ba2
AS
1114 spin_lock_init(&portdev->ports_lock);
1115 INIT_LIST_HEAD(&portdev->ports);
1116
1117 if (multiport) {
1118 spin_lock_init(&portdev->cvq_lock);
1119 INIT_WORK(&portdev->control_work, &control_work_handler);
1120
1121 fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1122 }
1123
1124 for (i = 0; i < portdev->config.nr_ports; i++)
1125 add_port(portdev, i);
1c85bf35 1126
971f3390
RR
1127 /* Start using the new console output. */
1128 early_put_chars = NULL;
31610434
RR
1129 return 0;
1130
fb08bd27
AS
1131free_chrdev:
1132 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
31610434 1133free:
1c85bf35 1134 kfree(portdev);
31610434
RR
1135fail:
1136 return err;
1137}
1138
1139static struct virtio_device_id id_table[] = {
1140 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1141 { 0 },
1142};
1143
c2983458
CB
1144static unsigned int features[] = {
1145 VIRTIO_CONSOLE_F_SIZE,
17634ba2 1146 VIRTIO_CONSOLE_F_MULTIPORT,
c2983458
CB
1147};
1148
31610434 1149static struct virtio_driver virtio_console = {
c2983458
CB
1150 .feature_table = features,
1151 .feature_table_size = ARRAY_SIZE(features),
31610434
RR
1152 .driver.name = KBUILD_MODNAME,
1153 .driver.owner = THIS_MODULE,
1154 .id_table = id_table,
1155 .probe = virtcons_probe,
c2983458 1156 .config_changed = virtcons_apply_config,
31610434
RR
1157};
1158
1159static int __init init(void)
1160{
fb08bd27
AS
1161 int err;
1162
1163 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1164 if (IS_ERR(pdrvdata.class)) {
1165 err = PTR_ERR(pdrvdata.class);
1166 pr_err("Error %d creating virtio-ports class\n", err);
1167 return err;
1168 }
38edf58d
AS
1169 INIT_LIST_HEAD(&pdrvdata.consoles);
1170
31610434
RR
1171 return register_virtio_driver(&virtio_console);
1172}
1173module_init(init);
1174
1175MODULE_DEVICE_TABLE(virtio, id_table);
1176MODULE_DESCRIPTION("Virtio console driver");
1177MODULE_LICENSE("GPL");