blob: ece1546fbb20d379441d1608ed6c9d792954f522 [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Amit Shah17634ba2009-12-21 21:03:25 +05303 * Copyright (C) 2009, 2010 Red Hat, Inc.
Rusty Russell31610432007-10-22 11:03:39 +10004 *
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 */
Amit Shahfb08bd22009-12-21 21:36:04 +053019#include <linux/cdev.h>
20#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100021#include <linux/err.h>
Amit Shah2030fa42009-12-21 21:49:30 +053022#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100023#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053024#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053025#include <linux/poll.h>
26#include <linux/sched.h>
Amit Shah38edf582010-01-18 19:15:05 +053027#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100028#include <linux/virtio.h>
29#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053030#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053031#include <linux/workqueue.h>
Rusty Russell31610432007-10-22 11:03:39 +100032#include "hvc_console.h"
33
Amit Shah38edf582010-01-18 19:15:05 +053034/*
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 {
Amit Shahfb08bd22009-12-21 21:36:04 +053043 /* Used for registering chardevs */
44 struct class *class;
45
46 /* Number of devices this driver is handling */
47 unsigned int index;
48
Rusty Russelld8a02bd2010-01-18 19:15:06 +053049 /*
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
Amit Shah38edf582010-01-18 19:15:05 +053061 /* 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
Amit Shah4f23c572010-01-18 19:15:09 +053068/* 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
Amit Shahfdb9a052010-01-18 19:15:01 +053086struct 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
Amit Shah17634ba2009-12-21 21:03:25 +053098/*
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;
Amit Shahfb08bd22009-12-21 21:36:04 +0530131
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;
Amit Shah17634ba2009-12-21 21:03:25 +0530137};
138
Amit Shah1c85bf32010-01-18 19:15:07 +0530139/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530140struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530141 /* Next port in the list, head is in the ports_device */
142 struct list_head list;
143
Amit Shah1c85bf32010-01-18 19:15:07 +0530144 /* Pointer to the parent virtio_console device */
145 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530146
147 /* The current buffer from which data has to be fed to readers */
148 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000149
Amit Shah203baab2010-01-18 19:15:12 +0530150 /*
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
Amit Shah1c85bf32010-01-18 19:15:07 +0530157 /* The IO vqs for this port */
158 struct virtqueue *in_vq, *out_vq;
159
Amit Shah4f23c572010-01-18 19:15:09 +0530160 /*
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;
Amit Shah17634ba2009-12-21 21:03:25 +0530165
Amit Shahfb08bd22009-12-21 21:36:04 +0530166 /* Each port associates with a separate char device */
167 struct cdev cdev;
168 struct device *dev;
169
Amit Shah2030fa42009-12-21 21:49:30 +0530170 /* A waitqueue for poll() or blocking read operations */
171 wait_queue_head_t waitqueue;
172
Amit Shah17634ba2009-12-21 21:03:25 +0530173 /* The 'id' to identify the port with the Host */
174 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530175
176 /* Is the host device open */
177 bool host_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530178};
Rusty Russell31610432007-10-22 11:03:39 +1000179
Rusty Russell971f3392010-01-18 19:14:56 +0530180/* This is the very early arch-specified put chars function. */
181static int (*early_put_chars)(u32, const char *, int);
182
Amit Shah38edf582010-01-18 19:15:05 +0530183static struct port *find_port_by_vtermno(u32 vtermno)
184{
185 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530186 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530187 unsigned long flags;
188
189 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530190 list_for_each_entry(cons, &pdrvdata.consoles, list) {
191 if (cons->vtermno == vtermno) {
192 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530193 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530194 }
Amit Shah38edf582010-01-18 19:15:05 +0530195 }
196 port = NULL;
197out:
198 spin_unlock_irqrestore(&pdrvdata_lock, flags);
199 return port;
200}
201
Amit Shah17634ba2009-12-21 21:03:25 +0530202static 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
Amit Shah203baab2010-01-18 19:15:12 +0530218static struct port *find_port_by_vq(struct ports_device *portdev,
219 struct virtqueue *vq)
220{
221 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530222 unsigned long flags;
223
Amit Shah17634ba2009-12-21 21:03:25 +0530224 spin_lock_irqsave(&portdev->ports_lock, flags);
225 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530226 if (port->in_vq == vq || port->out_vq == vq)
227 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530228 port = NULL;
229out:
Amit Shah17634ba2009-12-21 21:03:25 +0530230 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530231 return port;
232}
233
Amit Shah17634ba2009-12-21 21:03:25 +0530234static 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
Amit Shahfdb9a052010-01-18 19:15:01 +0530252static 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
Amit Shaha3cde442010-01-18 19:15:03 +0530279/* 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
Rusty Russella23ea922010-01-18 19:14:55 +0530295/*
Amit Shahe27b5192010-01-18 19:15:02 +0530296 * Create a scatter-gather list representing our input buffer and put
297 * it in the queue.
298 *
299 * Callers should take appropriate locks.
300 */
Amit Shah203baab2010-01-18 19:15:12 +0530301static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530302{
303 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530304 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530305
Amit Shahe27b5192010-01-18 19:15:02 +0530306 sg_init_one(sg, buf->buf, buf->size);
307
Amit Shah203baab2010-01-18 19:15:12 +0530308 ret = vq->vq_ops->add_buf(vq, sg, 0, 1, buf);
Amit Shahe27b5192010-01-18 19:15:02 +0530309 vq->vq_ops->kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530310 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
Amit Shah17634ba2009-12-21 21:03:25 +0530327static 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
Amit Shahf997f00b2009-12-21 17:28:51 +0530353static 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
Amit Shah203baab2010-01-18 19:15:12 +0530385/*
386 * Give out the data that's requested from the buffer that we have
387 * queued up.
388 */
Amit Shahb766cee2009-12-21 21:26:45 +0530389static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
390 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530391{
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;
Amit Shahb766cee2009-12-21 21:26:45 +0530399 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530400
Amit Shahb766cee2009-12-21 21:26:45 +0530401 if (to_user) {
402 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530403
Amit Shahb766cee2009-12-21 21:26:45 +0530404 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 }
410
Amit Shah203baab2010-01-18 19:15:12 +0530411 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)
Amit Shahfb08bd22009-12-21 21:36:04 +0530422 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530423
424 spin_unlock_irqrestore(&port->inbuf_lock, flags);
425 }
Amit Shahb766cee2009-12-21 21:26:45 +0530426 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530427 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530428}
429
Amit Shah2030fa42009-12-21 21:49:30 +0530430/* 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
Amit Shahe27b5192010-01-18 19:15:02 +0530570/*
Rusty Russella23ea922010-01-18 19:14:55 +0530571 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000572 *
Rusty Russella23ea922010-01-18 19:14:55 +0530573 * 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 */
Rusty Russell31610432007-10-22 11:03:39 +1000578static int put_chars(u32 vtermno, const char *buf, int count)
579{
Rusty Russell21206ed2010-01-18 19:15:00 +0530580 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530581
582 port = find_port_by_vtermno(vtermno);
583 if (!port)
584 return 0;
Rusty Russell31610432007-10-22 11:03:39 +1000585
Rusty Russell971f3392010-01-18 19:14:56 +0530586 if (unlikely(early_put_chars))
587 return early_put_chars(vtermno, buf, count);
588
Amit Shahf997f00b2009-12-21 17:28:51 +0530589 return send_buf(port, (void *)buf, count);
Rusty Russell31610432007-10-22 11:03:39 +1000590}
591
Rusty Russella23ea922010-01-18 19:14:55 +0530592/*
Rusty Russella23ea922010-01-18 19:14:55 +0530593 * get_chars() is the callback from the hvc_console infrastructure
594 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000595 *
Amit Shah203baab2010-01-18 19:15:12 +0530596 * We call out to fill_readbuf that gets us the required data from the
597 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530598 */
Rusty Russell31610432007-10-22 11:03:39 +1000599static int get_chars(u32 vtermno, char *buf, int count)
600{
Rusty Russell21206ed2010-01-18 19:15:00 +0530601 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000602
Amit Shah38edf582010-01-18 19:15:05 +0530603 port = find_port_by_vtermno(vtermno);
604 if (!port)
605 return 0;
Rusty Russell21206ed2010-01-18 19:15:00 +0530606
607 /* If we don't have an input queue yet, we can't get input. */
608 BUG_ON(!port->in_vq);
609
Amit Shahb766cee2009-12-21 21:26:45 +0530610 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000611}
Rusty Russell31610432007-10-22 11:03:39 +1000612
Amit Shahcb06e362010-01-18 19:15:08 +0530613static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100614{
Amit Shahcb06e362010-01-18 19:15:08 +0530615 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100616 struct winsize ws;
617
Amit Shahcb06e362010-01-18 19:15:08 +0530618 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));
Amit Shah4f23c572010-01-18 19:15:09 +0530626 hvc_resize(port->cons.hvc, ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100627 }
628}
629
Amit Shahcb06e362010-01-18 19:15:08 +0530630static void virtcons_apply_config(struct virtio_device *vdev)
631{
632 resize_console(find_port_by_vtermno(0));
633}
634
Amit Shah38edf582010-01-18 19:15:05 +0530635/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200636static int notifier_add_vio(struct hvc_struct *hp, int data)
637{
Amit Shah38edf582010-01-18 19:15:05 +0530638 struct port *port;
639
640 port = find_port_by_vtermno(hp->vtermno);
641 if (!port)
642 return -EINVAL;
643
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200644 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530645 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100646
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200647 return 0;
648}
649
650static void notifier_del_vio(struct hvc_struct *hp, int data)
651{
652 hp->irq_requested = 0;
653}
654
Amit Shah17634ba2009-12-21 21:03:25 +0530655/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530656static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530657 .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
Amit Shah17634ba2009-12-21 21:03:25 +0530679int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530680{
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
Amit Shah2030fa42009-12-21 21:49:30 +0530713 /* Notify host of port being opened */
714 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
715
Amit Shahcfa6d372010-01-18 19:15:10 +0530716 return 0;
717}
718
Amit Shah17634ba2009-12-21 21:03:25 +0530719/* 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;
Amit Shah2030fa42009-12-21 21:49:30 +0530755 case VIRTIO_CONSOLE_PORT_OPEN:
756 port->host_connected = cpkt->value;
757 wake_up_interruptible(&port->waitqueue);
758 break;
Amit Shah17634ba2009-12-21 21:03:25 +0530759 }
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
Amit Shah2030fa42009-12-21 21:49:30 +0530805 wake_up_interruptible(&port->waitqueue);
806
Amit Shah17634ba2009-12-21 21:03:25 +0530807 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)
Rusty Russelld8a02bd2010-01-18 19:15:06 +0530841{
842 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530843 struct port_buffer *inbuf;
Amit Shahfb08bd22009-12-21 21:36:04 +0530844 dev_t devt;
Rusty Russell31610432007-10-22 11:03:39 +1000845 int err;
Rusty Russell31610432007-10-22 11:03:39 +1000846
Amit Shah1c85bf32010-01-18 19:15:07 +0530847 port = kmalloc(sizeof(*port), GFP_KERNEL);
Rusty Russelld8a02bd2010-01-18 19:15:06 +0530848 if (!port) {
849 err = -ENOMEM;
850 goto fail;
Amit Shahf5508042010-01-18 19:14:59 +0530851 }
Rusty Russell739544882010-01-18 19:15:04 +0530852
Amit Shah1c85bf32010-01-18 19:15:07 +0530853 port->portdev = portdev;
Amit Shah17634ba2009-12-21 21:03:25 +0530854 port->id = id;
Amit Shah203baab2010-01-18 19:15:12 +0530855
856 port->inbuf = NULL;
Amit Shah17634ba2009-12-21 21:03:25 +0530857 port->cons.hvc = NULL;
Amit Shah203baab2010-01-18 19:15:12 +0530858
Amit Shah2030fa42009-12-21 21:49:30 +0530859 port->host_connected = false;
860
Amit Shah17634ba2009-12-21 21:03:25 +0530861 port->in_vq = portdev->in_vqs[port->id];
862 port->out_vq = portdev->out_vqs[port->id];
Rusty Russell31610432007-10-22 11:03:39 +1000863
Amit Shah2030fa42009-12-21 21:49:30 +0530864 cdev_init(&port->cdev, &port_fops);
Amit Shahfb08bd22009-12-21 21:36:04 +0530865
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
Amit Shah203baab2010-01-18 19:15:12 +0530884 spin_lock_init(&port->inbuf_lock);
Amit Shah2030fa42009-12-21 21:49:30 +0530885 init_waitqueue_head(&port->waitqueue);
Amit Shah203baab2010-01-18 19:15:12 +0530886
887 inbuf = alloc_buf(PAGE_SIZE);
888 if (!inbuf) {
Amit Shah1c85bf32010-01-18 19:15:07 +0530889 err = -ENOMEM;
Amit Shahfb08bd22009-12-21 21:36:04 +0530890 goto free_device;
Amit Shah1c85bf32010-01-18 19:15:07 +0530891 }
Rusty Russell31610432007-10-22 11:03:39 +1000892
Amit Shah203baab2010-01-18 19:15:12 +0530893 /* Register the input buffer the first time. */
894 add_inbuf(port->in_vq, inbuf);
895
Amit Shah17634ba2009-12-21 21:03:25 +0530896 /*
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);
Amit Shah38edf582010-01-18 19:15:05 +0530915
Amit Shah1c85bf32010-01-18 19:15:07 +0530916 return 0;
917
918free_inbuf:
Amit Shah203baab2010-01-18 19:15:12 +0530919 free_buf(inbuf);
Amit Shahfb08bd22009-12-21 21:36:04 +0530920free_device:
921 device_destroy(pdrvdata.class, port->dev->devt);
922free_cdev:
923 cdev_del(&port->cdev);
Amit Shah1c85bf32010-01-18 19:15:07 +0530924free_port:
925 kfree(port);
926fail:
927 return err;
928}
929
Amit Shah2658a79a2010-01-18 19:15:11 +0530930static int init_vqs(struct ports_device *portdev)
931{
932 vq_callback_t **io_callbacks;
933 char **io_names;
934 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +0530935 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a79a2010-01-18 19:15:11 +0530936 int err;
937
Amit Shah17634ba2009-12-21 21:03:25 +0530938 nr_ports = portdev->config.max_nr_ports;
939 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a79a2010-01-18 19:15:11 +0530940
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
Amit Shah17634ba2009-12-21 21:03:25 +0530969 /*
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;
Amit Shah2658a79a2010-01-18 19:15:11 +0530980
Amit Shah17634ba2009-12-21 21:03:25 +0530981 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 }
Amit Shah2658a79a2010-01-18 19:15:11 +0530995 /* 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
Amit Shah17634ba2009-12-21 21:03:25 +05301002 j = 0;
Amit Shah2658a79a2010-01-18 19:15:11 +05301003 portdev->in_vqs[0] = vqs[0];
1004 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301005 j += 2;
1006 if (use_multiport(portdev)) {
1007 portdev->c_ivq = vqs[j];
1008 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a79a2010-01-18 19:15:11 +05301009
Amit Shah17634ba2009-12-21 21:03:25 +05301010 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 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301016 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
Amit Shahfb08bd22009-12-21 21:36:04 +05301036static const struct file_operations portdev_fops = {
1037 .owner = THIS_MODULE,
1038};
1039
Amit Shah1c85bf32010-01-18 19:15:07 +05301040/*
1041 * Once we're further in boot, we get probed like any other virtio
1042 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301043 *
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.
Amit Shah1c85bf32010-01-18 19:15:07 +05301047 */
1048static int __devinit virtcons_probe(struct virtio_device *vdev)
1049{
Amit Shah1c85bf32010-01-18 19:15:07 +05301050 struct ports_device *portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301051 u32 i;
Amit Shah1c85bf32010-01-18 19:15:07 +05301052 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301053 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301054
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
Amit Shahfb08bd22009-12-21 21:36:04 +05301065 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
Amit Shah17634ba2009-12-21 21:03:25 +05301079 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
Amit Shah2658a79a2010-01-18 19:15:11 +05301108 err = init_vqs(portdev);
1109 if (err < 0) {
1110 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301111 goto free_chrdev;
Amit Shah2658a79a2010-01-18 19:15:11 +05301112 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301113
Amit Shah17634ba2009-12-21 21:03:25 +05301114 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);
Amit Shah1c85bf32010-01-18 19:15:07 +05301126
Rusty Russell971f3392010-01-18 19:14:56 +05301127 /* Start using the new console output. */
1128 early_put_chars = NULL;
Rusty Russell31610432007-10-22 11:03:39 +10001129 return 0;
1130
Amit Shahfb08bd22009-12-21 21:36:04 +05301131free_chrdev:
1132 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001133free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301134 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001135fail:
1136 return err;
1137}
1138
1139static struct virtio_device_id id_table[] = {
1140 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1141 { 0 },
1142};
1143
Christian Borntraegerc2983452008-11-25 13:36:26 +01001144static unsigned int features[] = {
1145 VIRTIO_CONSOLE_F_SIZE,
Amit Shah17634ba2009-12-21 21:03:25 +05301146 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001147};
1148
Rusty Russell31610432007-10-22 11:03:39 +10001149static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001150 .feature_table = features,
1151 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001152 .driver.name = KBUILD_MODNAME,
1153 .driver.owner = THIS_MODULE,
1154 .id_table = id_table,
1155 .probe = virtcons_probe,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001156 .config_changed = virtcons_apply_config,
Rusty Russell31610432007-10-22 11:03:39 +10001157};
1158
1159static int __init init(void)
1160{
Amit Shahfb08bd22009-12-21 21:36:04 +05301161 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 }
Amit Shah38edf582010-01-18 19:15:05 +05301169 INIT_LIST_HEAD(&pdrvdata.consoles);
1170
Rusty Russell31610432007-10-22 11:03:39 +10001171 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");