blob: 0057bae2036fd0f0419c36429c9b0e3100d7a15f [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>
Amit Shahd99393e2009-12-21 22:36:21 +053020#include <linux/debugfs.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053021#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100022#include <linux/err.h>
Amit Shah2030fa42009-12-21 21:49:30 +053023#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100024#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053025#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053026#include <linux/poll.h>
27#include <linux/sched.h>
Amit Shah38edf582010-01-18 19:15:05 +053028#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100029#include <linux/virtio.h>
30#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053031#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053032#include <linux/workqueue.h>
Rusty Russell31610432007-10-22 11:03:39 +100033#include "hvc_console.h"
34
Amit Shah38edf582010-01-18 19:15:05 +053035/*
36 * This is a global struct for storing common data for all the devices
37 * this driver handles.
38 *
39 * Mainly, it has a linked list for all the consoles in one place so
40 * that callbacks from hvc for get_chars(), put_chars() work properly
41 * across multiple devices and multiple ports per device.
42 */
43struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053044 /* Used for registering chardevs */
45 struct class *class;
46
Amit Shahd99393e2009-12-21 22:36:21 +053047 /* Used for exporting per-port information to debugfs */
48 struct dentry *debugfs_dir;
49
Amit Shahfb08bd22009-12-21 21:36:04 +053050 /* Number of devices this driver is handling */
51 unsigned int index;
52
Rusty Russelld8a02bd2010-01-18 19:15:06 +053053 /*
54 * This is used to keep track of the number of hvc consoles
55 * spawned by this driver. This number is given as the first
56 * argument to hvc_alloc(). To correctly map an initial
57 * console spawned via hvc_instantiate to the console being
58 * hooked up via hvc_alloc, we need to pass the same vtermno.
59 *
60 * We also just assume the first console being initialised was
61 * the first one that got used as the initial console.
62 */
63 unsigned int next_vtermno;
64
Amit Shah38edf582010-01-18 19:15:05 +053065 /* All the console devices handled by this driver */
66 struct list_head consoles;
67};
68static struct ports_driver_data pdrvdata;
69
70DEFINE_SPINLOCK(pdrvdata_lock);
71
Amit Shah4f23c572010-01-18 19:15:09 +053072/* This struct holds information that's relevant only for console ports */
73struct console {
74 /* We'll place all consoles in a list in the pdrvdata struct */
75 struct list_head list;
76
77 /* The hvc device associated with this console port */
78 struct hvc_struct *hvc;
79
80 /*
81 * This number identifies the number that we used to register
82 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
83 * number passed on by the hvc callbacks to us to
84 * differentiate between the other console ports handled by
85 * this driver
86 */
87 u32 vtermno;
88};
89
Amit Shahfdb9a052010-01-18 19:15:01 +053090struct port_buffer {
91 char *buf;
92
93 /* size of the buffer in *buf above */
94 size_t size;
95
96 /* used length of the buffer */
97 size_t len;
98 /* offset in the buf from which to consume data */
99 size_t offset;
100};
101
Amit Shah17634ba2009-12-21 21:03:25 +0530102/*
103 * This is a per-device struct that stores data common to all the
104 * ports for that device (vdev->priv).
105 */
106struct ports_device {
107 /*
108 * Workqueue handlers where we process deferred work after
109 * notification
110 */
111 struct work_struct control_work;
Amit Shah7f5d8102009-12-21 22:22:08 +0530112 struct work_struct config_work;
Amit Shah17634ba2009-12-21 21:03:25 +0530113
114 struct list_head ports;
115
116 /* To protect the list of ports */
117 spinlock_t ports_lock;
118
119 /* To protect the vq operations for the control channel */
120 spinlock_t cvq_lock;
121
122 /* The current config space is stored here */
123 struct virtio_console_config config;
124
125 /* The virtio device we're associated with */
126 struct virtio_device *vdev;
127
128 /*
129 * A couple of virtqueues for the control channel: one for
130 * guest->host transfers, one for host->guest transfers
131 */
132 struct virtqueue *c_ivq, *c_ovq;
133
134 /* Array of per-port IO virtqueues */
135 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530136
137 /* Used for numbering devices for sysfs and debugfs */
138 unsigned int drv_index;
139
140 /* Major number for this device. Ports will be created as minors. */
141 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530142};
143
Amit Shah1c85bf32010-01-18 19:15:07 +0530144/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530145struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530146 /* Next port in the list, head is in the ports_device */
147 struct list_head list;
148
Amit Shah1c85bf32010-01-18 19:15:07 +0530149 /* Pointer to the parent virtio_console device */
150 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530151
152 /* The current buffer from which data has to be fed to readers */
153 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000154
Amit Shah203baab2010-01-18 19:15:12 +0530155 /*
156 * To protect the operations on the in_vq associated with this
157 * port. Has to be a spinlock because it can be called from
158 * interrupt context (get_char()).
159 */
160 spinlock_t inbuf_lock;
161
Amit Shah1c85bf32010-01-18 19:15:07 +0530162 /* The IO vqs for this port */
163 struct virtqueue *in_vq, *out_vq;
164
Amit Shahd99393e2009-12-21 22:36:21 +0530165 /* File in the debugfs directory that exposes this port's information */
166 struct dentry *debugfs_file;
167
Amit Shah4f23c572010-01-18 19:15:09 +0530168 /*
169 * The entries in this struct will be valid if this port is
170 * hooked up to an hvc console
171 */
172 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530173
Amit Shahfb08bd22009-12-21 21:36:04 +0530174 /* Each port associates with a separate char device */
175 struct cdev cdev;
176 struct device *dev;
177
Amit Shah2030fa42009-12-21 21:49:30 +0530178 /* A waitqueue for poll() or blocking read operations */
179 wait_queue_head_t waitqueue;
180
Amit Shah431edb82009-12-21 21:57:40 +0530181 /* The 'name' of the port that we expose via sysfs properties */
182 char *name;
183
Amit Shah17634ba2009-12-21 21:03:25 +0530184 /* The 'id' to identify the port with the Host */
185 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530186
187 /* Is the host device open */
188 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530189
190 /* We should allow only one process to open a port */
191 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530192};
Rusty Russell31610432007-10-22 11:03:39 +1000193
Rusty Russell971f3392010-01-18 19:14:56 +0530194/* This is the very early arch-specified put chars function. */
195static int (*early_put_chars)(u32, const char *, int);
196
Amit Shah38edf582010-01-18 19:15:05 +0530197static struct port *find_port_by_vtermno(u32 vtermno)
198{
199 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530200 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530201 unsigned long flags;
202
203 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530204 list_for_each_entry(cons, &pdrvdata.consoles, list) {
205 if (cons->vtermno == vtermno) {
206 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530207 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530208 }
Amit Shah38edf582010-01-18 19:15:05 +0530209 }
210 port = NULL;
211out:
212 spin_unlock_irqrestore(&pdrvdata_lock, flags);
213 return port;
214}
215
Amit Shah17634ba2009-12-21 21:03:25 +0530216static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
217{
218 struct port *port;
219 unsigned long flags;
220
221 spin_lock_irqsave(&portdev->ports_lock, flags);
222 list_for_each_entry(port, &portdev->ports, list)
223 if (port->id == id)
224 goto out;
225 port = NULL;
226out:
227 spin_unlock_irqrestore(&portdev->ports_lock, flags);
228
229 return port;
230}
231
Amit Shah203baab2010-01-18 19:15:12 +0530232static struct port *find_port_by_vq(struct ports_device *portdev,
233 struct virtqueue *vq)
234{
235 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530236 unsigned long flags;
237
Amit Shah17634ba2009-12-21 21:03:25 +0530238 spin_lock_irqsave(&portdev->ports_lock, flags);
239 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530240 if (port->in_vq == vq || port->out_vq == vq)
241 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530242 port = NULL;
243out:
Amit Shah17634ba2009-12-21 21:03:25 +0530244 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530245 return port;
246}
247
Amit Shah17634ba2009-12-21 21:03:25 +0530248static bool is_console_port(struct port *port)
249{
250 if (port->cons.hvc)
251 return true;
252 return false;
253}
254
255static inline bool use_multiport(struct ports_device *portdev)
256{
257 /*
258 * This condition can be true when put_chars is called from
259 * early_init
260 */
261 if (!portdev->vdev)
262 return 0;
263 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
264}
265
Amit Shahfdb9a052010-01-18 19:15:01 +0530266static void free_buf(struct port_buffer *buf)
267{
268 kfree(buf->buf);
269 kfree(buf);
270}
271
272static struct port_buffer *alloc_buf(size_t buf_size)
273{
274 struct port_buffer *buf;
275
276 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
277 if (!buf)
278 goto fail;
279 buf->buf = kzalloc(buf_size, GFP_KERNEL);
280 if (!buf->buf)
281 goto free_buf;
282 buf->len = 0;
283 buf->offset = 0;
284 buf->size = buf_size;
285 return buf;
286
287free_buf:
288 kfree(buf);
289fail:
290 return NULL;
291}
292
Amit Shaha3cde442010-01-18 19:15:03 +0530293/* Callers should take appropriate locks */
294static void *get_inbuf(struct port *port)
295{
296 struct port_buffer *buf;
297 struct virtqueue *vq;
298 unsigned int len;
299
300 vq = port->in_vq;
301 buf = vq->vq_ops->get_buf(vq, &len);
302 if (buf) {
303 buf->len = len;
304 buf->offset = 0;
305 }
306 return buf;
307}
308
Rusty Russella23ea922010-01-18 19:14:55 +0530309/*
Amit Shahe27b5192010-01-18 19:15:02 +0530310 * Create a scatter-gather list representing our input buffer and put
311 * it in the queue.
312 *
313 * Callers should take appropriate locks.
314 */
Amit Shah203baab2010-01-18 19:15:12 +0530315static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530316{
317 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530318 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530319
Amit Shahe27b5192010-01-18 19:15:02 +0530320 sg_init_one(sg, buf->buf, buf->size);
321
Amit Shah203baab2010-01-18 19:15:12 +0530322 ret = vq->vq_ops->add_buf(vq, sg, 0, 1, buf);
Amit Shahe27b5192010-01-18 19:15:02 +0530323 vq->vq_ops->kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530324 return ret;
325}
326
Amit Shah88f251a2009-12-21 22:15:30 +0530327/* Discard any unread data this port has. Callers lockers. */
328static void discard_port_data(struct port *port)
329{
330 struct port_buffer *buf;
331 struct virtqueue *vq;
332 unsigned int len;
333
334 vq = port->in_vq;
335 if (port->inbuf)
336 buf = port->inbuf;
337 else
338 buf = vq->vq_ops->get_buf(vq, &len);
339
340 if (!buf)
341 return;
342
343 if (add_inbuf(vq, buf) < 0) {
344 buf->len = buf->offset = 0;
345 dev_warn(port->dev, "Error adding buffer back to vq\n");
346 return;
347 }
348
349 port->inbuf = NULL;
350}
351
Amit Shah203baab2010-01-18 19:15:12 +0530352static bool port_has_data(struct port *port)
353{
354 unsigned long flags;
355 bool ret;
356
357 ret = false;
358 spin_lock_irqsave(&port->inbuf_lock, flags);
359 if (port->inbuf)
360 ret = true;
361 spin_unlock_irqrestore(&port->inbuf_lock, flags);
362
363 return ret;
364}
365
Amit Shah17634ba2009-12-21 21:03:25 +0530366static ssize_t send_control_msg(struct port *port, unsigned int event,
367 unsigned int value)
368{
369 struct scatterlist sg[1];
370 struct virtio_console_control cpkt;
371 struct virtqueue *vq;
372 int len;
373
374 if (!use_multiport(port->portdev))
375 return 0;
376
377 cpkt.id = port->id;
378 cpkt.event = event;
379 cpkt.value = value;
380
381 vq = port->portdev->c_ovq;
382
383 sg_init_one(sg, &cpkt, sizeof(cpkt));
384 if (vq->vq_ops->add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
385 vq->vq_ops->kick(vq);
386 while (!vq->vq_ops->get_buf(vq, &len))
387 cpu_relax();
388 }
389 return 0;
390}
391
Amit Shahf997f00b2009-12-21 17:28:51 +0530392static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
393{
394 struct scatterlist sg[1];
395 struct virtqueue *out_vq;
396 ssize_t ret;
397 unsigned int len;
398
399 out_vq = port->out_vq;
400
401 sg_init_one(sg, in_buf, in_count);
402 ret = out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, in_buf);
403
404 /* Tell Host to go! */
405 out_vq->vq_ops->kick(out_vq);
406
407 if (ret < 0) {
408 len = 0;
409 goto fail;
410 }
411
412 /*
413 * Wait till the host acknowledges it pushed out the data we
414 * sent. Also ensure we return to userspace the number of
415 * bytes that were successfully consumed by the host.
416 */
417 while (!out_vq->vq_ops->get_buf(out_vq, &len))
418 cpu_relax();
419fail:
420 /* We're expected to return the amount of data we wrote */
421 return len;
422}
423
Amit Shah203baab2010-01-18 19:15:12 +0530424/*
425 * Give out the data that's requested from the buffer that we have
426 * queued up.
427 */
Amit Shahb766cee2009-12-21 21:26:45 +0530428static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
429 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530430{
431 struct port_buffer *buf;
432 unsigned long flags;
433
434 if (!out_count || !port_has_data(port))
435 return 0;
436
437 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530438 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530439
Amit Shahb766cee2009-12-21 21:26:45 +0530440 if (to_user) {
441 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530442
Amit Shahb766cee2009-12-21 21:26:45 +0530443 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
444 if (ret)
445 return -EFAULT;
446 } else {
447 memcpy(out_buf, buf->buf + buf->offset, out_count);
448 }
449
Amit Shah203baab2010-01-18 19:15:12 +0530450 buf->offset += out_count;
451
452 if (buf->offset == buf->len) {
453 /*
454 * We're done using all the data in this buffer.
455 * Re-queue so that the Host can send us more data.
456 */
457 spin_lock_irqsave(&port->inbuf_lock, flags);
458 port->inbuf = NULL;
459
460 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530461 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530462
463 spin_unlock_irqrestore(&port->inbuf_lock, flags);
464 }
Amit Shahb766cee2009-12-21 21:26:45 +0530465 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530466 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530467}
468
Amit Shah2030fa42009-12-21 21:49:30 +0530469/* The condition that must be true for polling to end */
470static bool wait_is_over(struct port *port)
471{
472 return port_has_data(port) || !port->host_connected;
473}
474
475static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
476 size_t count, loff_t *offp)
477{
478 struct port *port;
479 ssize_t ret;
480
481 port = filp->private_data;
482
483 if (!port_has_data(port)) {
484 /*
485 * If nothing's connected on the host just return 0 in
486 * case of list_empty; this tells the userspace app
487 * that there's no connection
488 */
489 if (!port->host_connected)
490 return 0;
491 if (filp->f_flags & O_NONBLOCK)
492 return -EAGAIN;
493
494 ret = wait_event_interruptible(port->waitqueue,
495 wait_is_over(port));
496 if (ret < 0)
497 return ret;
498 }
499 /*
500 * We could've received a disconnection message while we were
501 * waiting for more data.
502 *
503 * This check is not clubbed in the if() statement above as we
504 * might receive some data as well as the host could get
505 * disconnected after we got woken up from our wait. So we
506 * really want to give off whatever data we have and only then
507 * check for host_connected.
508 */
509 if (!port_has_data(port) && !port->host_connected)
510 return 0;
511
512 return fill_readbuf(port, ubuf, count, true);
513}
514
515static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
516 size_t count, loff_t *offp)
517{
518 struct port *port;
519 char *buf;
520 ssize_t ret;
521
522 port = filp->private_data;
523
524 count = min((size_t)(32 * 1024), count);
525
526 buf = kmalloc(count, GFP_KERNEL);
527 if (!buf)
528 return -ENOMEM;
529
530 ret = copy_from_user(buf, ubuf, count);
531 if (ret) {
532 ret = -EFAULT;
533 goto free_buf;
534 }
535
536 ret = send_buf(port, buf, count);
537free_buf:
538 kfree(buf);
539 return ret;
540}
541
542static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
543{
544 struct port *port;
545 unsigned int ret;
546
547 port = filp->private_data;
548 poll_wait(filp, &port->waitqueue, wait);
549
550 ret = 0;
551 if (port->inbuf)
552 ret |= POLLIN | POLLRDNORM;
553 if (port->host_connected)
554 ret |= POLLOUT;
555 if (!port->host_connected)
556 ret |= POLLHUP;
557
558 return ret;
559}
560
561static int port_fops_release(struct inode *inode, struct file *filp)
562{
563 struct port *port;
564
565 port = filp->private_data;
566
567 /* Notify host of port being closed */
568 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
569
Amit Shah88f251a2009-12-21 22:15:30 +0530570 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530571 port->guest_connected = false;
572
Amit Shah88f251a2009-12-21 22:15:30 +0530573 discard_port_data(port);
574
575 spin_unlock_irq(&port->inbuf_lock);
576
Amit Shah2030fa42009-12-21 21:49:30 +0530577 return 0;
578}
579
580static int port_fops_open(struct inode *inode, struct file *filp)
581{
582 struct cdev *cdev = inode->i_cdev;
583 struct port *port;
584
585 port = container_of(cdev, struct port, cdev);
586 filp->private_data = port;
587
588 /*
589 * Don't allow opening of console port devices -- that's done
590 * via /dev/hvc
591 */
592 if (is_console_port(port))
593 return -ENXIO;
594
Amit Shah3c7969c2009-11-26 11:25:38 +0530595 /* Allow only one process to open a particular port at a time */
596 spin_lock_irq(&port->inbuf_lock);
597 if (port->guest_connected) {
598 spin_unlock_irq(&port->inbuf_lock);
599 return -EMFILE;
600 }
601
602 port->guest_connected = true;
603 spin_unlock_irq(&port->inbuf_lock);
604
Amit Shah2030fa42009-12-21 21:49:30 +0530605 /* Notify host of port being opened */
606 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
607
608 return 0;
609}
610
611/*
612 * The file operations that we support: programs in the guest can open
613 * a console device, read from it, write to it, poll for data and
614 * close it. The devices are at
615 * /dev/vport<device number>p<port number>
616 */
617static const struct file_operations port_fops = {
618 .owner = THIS_MODULE,
619 .open = port_fops_open,
620 .read = port_fops_read,
621 .write = port_fops_write,
622 .poll = port_fops_poll,
623 .release = port_fops_release,
624};
625
Amit Shahe27b5192010-01-18 19:15:02 +0530626/*
Rusty Russella23ea922010-01-18 19:14:55 +0530627 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000628 *
Rusty Russella23ea922010-01-18 19:14:55 +0530629 * We turn the characters into a scatter-gather list, add it to the
630 * output queue and then kick the Host. Then we sit here waiting for
631 * it to finish: inefficient in theory, but in practice
632 * implementations will do it immediately (lguest's Launcher does).
633 */
Rusty Russell31610432007-10-22 11:03:39 +1000634static int put_chars(u32 vtermno, const char *buf, int count)
635{
Rusty Russell21206ed2010-01-18 19:15:00 +0530636 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530637
638 port = find_port_by_vtermno(vtermno);
639 if (!port)
640 return 0;
Rusty Russell31610432007-10-22 11:03:39 +1000641
Rusty Russell971f3392010-01-18 19:14:56 +0530642 if (unlikely(early_put_chars))
643 return early_put_chars(vtermno, buf, count);
644
Amit Shahf997f00b2009-12-21 17:28:51 +0530645 return send_buf(port, (void *)buf, count);
Rusty Russell31610432007-10-22 11:03:39 +1000646}
647
Rusty Russella23ea922010-01-18 19:14:55 +0530648/*
Rusty Russella23ea922010-01-18 19:14:55 +0530649 * get_chars() is the callback from the hvc_console infrastructure
650 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000651 *
Amit Shah203baab2010-01-18 19:15:12 +0530652 * We call out to fill_readbuf that gets us the required data from the
653 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530654 */
Rusty Russell31610432007-10-22 11:03:39 +1000655static int get_chars(u32 vtermno, char *buf, int count)
656{
Rusty Russell21206ed2010-01-18 19:15:00 +0530657 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000658
Amit Shah38edf582010-01-18 19:15:05 +0530659 port = find_port_by_vtermno(vtermno);
660 if (!port)
661 return 0;
Rusty Russell21206ed2010-01-18 19:15:00 +0530662
663 /* If we don't have an input queue yet, we can't get input. */
664 BUG_ON(!port->in_vq);
665
Amit Shahb766cee2009-12-21 21:26:45 +0530666 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000667}
Rusty Russell31610432007-10-22 11:03:39 +1000668
Amit Shahcb06e362010-01-18 19:15:08 +0530669static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100670{
Amit Shahcb06e362010-01-18 19:15:08 +0530671 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100672 struct winsize ws;
673
Amit Shahcb06e362010-01-18 19:15:08 +0530674 vdev = port->portdev->vdev;
675 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
676 vdev->config->get(vdev,
677 offsetof(struct virtio_console_config, cols),
678 &ws.ws_col, sizeof(u16));
679 vdev->config->get(vdev,
680 offsetof(struct virtio_console_config, rows),
681 &ws.ws_row, sizeof(u16));
Amit Shah4f23c572010-01-18 19:15:09 +0530682 hvc_resize(port->cons.hvc, ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100683 }
684}
685
Amit Shah38edf582010-01-18 19:15:05 +0530686/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200687static int notifier_add_vio(struct hvc_struct *hp, int data)
688{
Amit Shah38edf582010-01-18 19:15:05 +0530689 struct port *port;
690
691 port = find_port_by_vtermno(hp->vtermno);
692 if (!port)
693 return -EINVAL;
694
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200695 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530696 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100697
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200698 return 0;
699}
700
701static void notifier_del_vio(struct hvc_struct *hp, int data)
702{
703 hp->irq_requested = 0;
704}
705
Amit Shah17634ba2009-12-21 21:03:25 +0530706/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530707static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530708 .get_chars = get_chars,
709 .put_chars = put_chars,
710 .notifier_add = notifier_add_vio,
711 .notifier_del = notifier_del_vio,
712 .notifier_hangup = notifier_del_vio,
713};
714
715/*
716 * Console drivers are initialized very early so boot messages can go
717 * out, so we do things slightly differently from the generic virtio
718 * initialization of the net and block drivers.
719 *
720 * At this stage, the console is output-only. It's too early to set
721 * up a virtqueue, so we let the drivers do some boutique early-output
722 * thing.
723 */
724int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
725{
726 early_put_chars = put_chars;
727 return hvc_instantiate(0, 0, &hv_ops);
728}
729
Amit Shah17634ba2009-12-21 21:03:25 +0530730int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530731{
732 int ret;
733
734 /*
735 * The Host's telling us this port is a console port. Hook it
736 * up with an hvc console.
737 *
738 * To set up and manage our virtual console, we call
739 * hvc_alloc().
740 *
741 * The first argument of hvc_alloc() is the virtual console
742 * number. The second argument is the parameter for the
743 * notification mechanism (like irq number). We currently
744 * leave this as zero, virtqueues have implicit notifications.
745 *
746 * The third argument is a "struct hv_ops" containing the
747 * put_chars() get_chars(), notifier_add() and notifier_del()
748 * pointers. The final argument is the output buffer size: we
749 * can do any size, so we put PAGE_SIZE here.
750 */
751 port->cons.vtermno = pdrvdata.next_vtermno;
752
753 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
754 if (IS_ERR(port->cons.hvc)) {
755 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530756 dev_err(port->dev,
757 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530758 port->cons.hvc = NULL;
759 return ret;
760 }
761 spin_lock_irq(&pdrvdata_lock);
762 pdrvdata.next_vtermno++;
763 list_add_tail(&port->cons.list, &pdrvdata.consoles);
764 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530765 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530766
Amit Shah2030fa42009-12-21 21:49:30 +0530767 /* Notify host of port being opened */
768 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
769
Amit Shahcfa6d372010-01-18 19:15:10 +0530770 return 0;
771}
772
Amit Shah431edb82009-12-21 21:57:40 +0530773static ssize_t show_port_name(struct device *dev,
774 struct device_attribute *attr, char *buffer)
775{
776 struct port *port;
777
778 port = dev_get_drvdata(dev);
779
780 return sprintf(buffer, "%s\n", port->name);
781}
782
783static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
784
785static struct attribute *port_sysfs_entries[] = {
786 &dev_attr_name.attr,
787 NULL
788};
789
790static struct attribute_group port_attribute_group = {
791 .name = NULL, /* put in device directory */
792 .attrs = port_sysfs_entries,
793};
794
Amit Shahd99393e2009-12-21 22:36:21 +0530795static int debugfs_open(struct inode *inode, struct file *filp)
796{
797 filp->private_data = inode->i_private;
798 return 0;
799}
800
801static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
802 size_t count, loff_t *offp)
803{
804 struct port *port;
805 char *buf;
806 ssize_t ret, out_offset, out_count;
807
808 out_count = 1024;
809 buf = kmalloc(out_count, GFP_KERNEL);
810 if (!buf)
811 return -ENOMEM;
812
813 port = filp->private_data;
814 out_offset = 0;
815 out_offset += snprintf(buf + out_offset, out_count,
816 "name: %s\n", port->name ? port->name : "");
817 out_offset += snprintf(buf + out_offset, out_count - out_offset,
818 "guest_connected: %d\n", port->guest_connected);
819 out_offset += snprintf(buf + out_offset, out_count - out_offset,
820 "host_connected: %d\n", port->host_connected);
821 out_offset += snprintf(buf + out_offset, out_count - out_offset,
822 "is_console: %s\n",
823 is_console_port(port) ? "yes" : "no");
824 out_offset += snprintf(buf + out_offset, out_count - out_offset,
825 "console_vtermno: %u\n", port->cons.vtermno);
826
827 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
828 kfree(buf);
829 return ret;
830}
831
832static const struct file_operations port_debugfs_ops = {
833 .owner = THIS_MODULE,
834 .open = debugfs_open,
835 .read = debugfs_read,
836};
837
Amit Shah1f7aa422009-12-21 22:27:31 +0530838/* Remove all port-specific data. */
839static int remove_port(struct port *port)
840{
Amit Shaha9cdd482010-02-12 10:32:15 +0530841 struct port_buffer *buf;
842
Amit Shah1f7aa422009-12-21 22:27:31 +0530843 spin_lock_irq(&port->portdev->ports_lock);
844 list_del(&port->list);
845 spin_unlock_irq(&port->portdev->ports_lock);
846
847 if (is_console_port(port)) {
848 spin_lock_irq(&pdrvdata_lock);
849 list_del(&port->cons.list);
850 spin_unlock_irq(&pdrvdata_lock);
851 hvc_remove(port->cons.hvc);
852 }
853 if (port->guest_connected)
854 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
855
Amit Shah1f7aa422009-12-21 22:27:31 +0530856 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
857 device_destroy(pdrvdata.class, port->dev->devt);
858 cdev_del(&port->cdev);
859
Amit Shaha9cdd482010-02-12 10:32:15 +0530860 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +0530861 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +0530862
863 /* Remove buffers we queued up for the Host to send us data in. */
864 while ((buf = port->in_vq->vq_ops->detach_unused_buf(port->in_vq)))
865 free_buf(buf);
866
Amit Shah1f7aa422009-12-21 22:27:31 +0530867 kfree(port->name);
868
Amit Shahd99393e2009-12-21 22:36:21 +0530869 debugfs_remove(port->debugfs_file);
870
Amit Shah1f7aa422009-12-21 22:27:31 +0530871 kfree(port);
872 return 0;
873}
874
Amit Shah17634ba2009-12-21 21:03:25 +0530875/* Any private messages that the Host and Guest want to share */
876static void handle_control_message(struct ports_device *portdev,
877 struct port_buffer *buf)
878{
879 struct virtio_console_control *cpkt;
880 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +0530881 size_t name_size;
882 int err;
Amit Shah17634ba2009-12-21 21:03:25 +0530883
884 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
885
886 port = find_port_by_id(portdev, cpkt->id);
887 if (!port) {
888 /* No valid header at start of buffer. Drop it. */
889 dev_dbg(&portdev->vdev->dev,
890 "Invalid index %u in control packet\n", cpkt->id);
891 return;
892 }
893
894 switch (cpkt->event) {
895 case VIRTIO_CONSOLE_CONSOLE_PORT:
896 if (!cpkt->value)
897 break;
898 if (is_console_port(port))
899 break;
900
901 init_port_console(port);
902 /*
903 * Could remove the port here in case init fails - but
904 * have to notify the host first.
905 */
906 break;
907 case VIRTIO_CONSOLE_RESIZE:
908 if (!is_console_port(port))
909 break;
910 port->cons.hvc->irq_requested = 1;
911 resize_console(port);
912 break;
Amit Shah2030fa42009-12-21 21:49:30 +0530913 case VIRTIO_CONSOLE_PORT_OPEN:
914 port->host_connected = cpkt->value;
915 wake_up_interruptible(&port->waitqueue);
916 break;
Amit Shah431edb82009-12-21 21:57:40 +0530917 case VIRTIO_CONSOLE_PORT_NAME:
918 /*
919 * Skip the size of the header and the cpkt to get the size
920 * of the name that was sent
921 */
922 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
923
924 port->name = kmalloc(name_size, GFP_KERNEL);
925 if (!port->name) {
926 dev_err(port->dev,
927 "Not enough space to store port name\n");
928 break;
929 }
930 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
931 name_size - 1);
932 port->name[name_size - 1] = 0;
933
934 /*
935 * Since we only have one sysfs attribute, 'name',
936 * create it only if we have a name for the port.
937 */
938 err = sysfs_create_group(&port->dev->kobj,
939 &port_attribute_group);
940 if (err)
941 dev_err(port->dev,
942 "Error %d creating sysfs device attributes\n",
943 err);
944
945 break;
Amit Shah1f7aa422009-12-21 22:27:31 +0530946 case VIRTIO_CONSOLE_PORT_REMOVE:
947 /*
948 * Hot unplug the port. We don't decrement nr_ports
949 * since we don't want to deal with extra complexities
950 * of using the lowest-available port id: We can just
951 * pick up the nr_ports number as the id and not have
952 * userspace send it to us. This helps us in two
953 * ways:
954 *
955 * - We don't need to have a 'port_id' field in the
956 * config space when a port is hot-added. This is a
957 * good thing as we might queue up multiple hotplug
958 * requests issued in our workqueue.
959 *
960 * - Another way to deal with this would have been to
961 * use a bitmap of the active ports and select the
962 * lowest non-active port from that map. That
963 * bloats the already tight config space and we
964 * would end up artificially limiting the
965 * max. number of ports to sizeof(bitmap). Right
966 * now we can support 2^32 ports (as the port id is
967 * stored in a u32 type).
968 *
969 */
970 remove_port(port);
971 break;
Amit Shah17634ba2009-12-21 21:03:25 +0530972 }
973}
974
975static void control_work_handler(struct work_struct *work)
976{
977 struct ports_device *portdev;
978 struct virtqueue *vq;
979 struct port_buffer *buf;
980 unsigned int len;
981
982 portdev = container_of(work, struct ports_device, control_work);
983 vq = portdev->c_ivq;
984
985 spin_lock(&portdev->cvq_lock);
986 while ((buf = vq->vq_ops->get_buf(vq, &len))) {
987 spin_unlock(&portdev->cvq_lock);
988
989 buf->len = len;
990 buf->offset = 0;
991
992 handle_control_message(portdev, buf);
993
994 spin_lock(&portdev->cvq_lock);
995 if (add_inbuf(portdev->c_ivq, buf) < 0) {
996 dev_warn(&portdev->vdev->dev,
997 "Error adding buffer to queue\n");
998 free_buf(buf);
999 }
1000 }
1001 spin_unlock(&portdev->cvq_lock);
1002}
1003
1004static void in_intr(struct virtqueue *vq)
1005{
1006 struct port *port;
1007 unsigned long flags;
1008
1009 port = find_port_by_vq(vq->vdev->priv, vq);
1010 if (!port)
1011 return;
1012
1013 spin_lock_irqsave(&port->inbuf_lock, flags);
1014 port->inbuf = get_inbuf(port);
1015
Amit Shah88f251a2009-12-21 22:15:30 +05301016 /*
1017 * Don't queue up data when port is closed. This condition
1018 * can be reached when a console port is not yet connected (no
1019 * tty is spawned) and the host sends out data to console
1020 * ports. For generic serial ports, the host won't
1021 * (shouldn't) send data till the guest is connected.
1022 */
1023 if (!port->guest_connected)
1024 discard_port_data(port);
1025
Amit Shah17634ba2009-12-21 21:03:25 +05301026 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1027
Amit Shah2030fa42009-12-21 21:49:30 +05301028 wake_up_interruptible(&port->waitqueue);
1029
Amit Shah17634ba2009-12-21 21:03:25 +05301030 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1031 hvc_kick();
1032}
1033
1034static void control_intr(struct virtqueue *vq)
1035{
1036 struct ports_device *portdev;
1037
1038 portdev = vq->vdev->priv;
1039 schedule_work(&portdev->control_work);
1040}
1041
Amit Shah7f5d8102009-12-21 22:22:08 +05301042static void config_intr(struct virtio_device *vdev)
1043{
1044 struct ports_device *portdev;
1045
1046 portdev = vdev->priv;
1047 if (use_multiport(portdev)) {
1048 /* Handle port hot-add */
1049 schedule_work(&portdev->config_work);
1050 }
1051 /*
1052 * We'll use this way of resizing only for legacy support.
1053 * For newer userspace (VIRTIO_CONSOLE_F_MULTPORT+), use
1054 * control messages to indicate console size changes so that
1055 * it can be done per-port
1056 */
1057 resize_console(find_port_by_id(portdev, 0));
1058}
1059
Amit Shah17634ba2009-12-21 21:03:25 +05301060static void fill_queue(struct virtqueue *vq, spinlock_t *lock)
1061{
1062 struct port_buffer *buf;
1063 int ret;
1064
1065 do {
1066 buf = alloc_buf(PAGE_SIZE);
1067 if (!buf)
1068 break;
1069
1070 spin_lock_irq(lock);
1071 ret = add_inbuf(vq, buf);
1072 if (ret < 0) {
1073 spin_unlock_irq(lock);
1074 free_buf(buf);
1075 break;
1076 }
1077 spin_unlock_irq(lock);
1078 } while (ret > 0);
1079}
1080
1081static int add_port(struct ports_device *portdev, u32 id)
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301082{
Amit Shahd99393e2009-12-21 22:36:21 +05301083 char debugfs_name[16];
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301084 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +05301085 struct port_buffer *inbuf;
Amit Shahfb08bd22009-12-21 21:36:04 +05301086 dev_t devt;
Rusty Russell31610432007-10-22 11:03:39 +10001087 int err;
Rusty Russell31610432007-10-22 11:03:39 +10001088
Amit Shah1c85bf32010-01-18 19:15:07 +05301089 port = kmalloc(sizeof(*port), GFP_KERNEL);
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301090 if (!port) {
1091 err = -ENOMEM;
1092 goto fail;
Amit Shahf5508042010-01-18 19:14:59 +05301093 }
Rusty Russell73954482010-01-18 19:15:04 +05301094
Amit Shah1c85bf32010-01-18 19:15:07 +05301095 port->portdev = portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301096 port->id = id;
Amit Shah203baab2010-01-18 19:15:12 +05301097
Amit Shah431edb82009-12-21 21:57:40 +05301098 port->name = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301099 port->inbuf = NULL;
Amit Shah17634ba2009-12-21 21:03:25 +05301100 port->cons.hvc = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301101
Amit Shah3c7969c2009-11-26 11:25:38 +05301102 port->host_connected = port->guest_connected = false;
Amit Shah2030fa42009-12-21 21:49:30 +05301103
Amit Shah17634ba2009-12-21 21:03:25 +05301104 port->in_vq = portdev->in_vqs[port->id];
1105 port->out_vq = portdev->out_vqs[port->id];
Rusty Russell31610432007-10-22 11:03:39 +10001106
Amit Shah2030fa42009-12-21 21:49:30 +05301107 cdev_init(&port->cdev, &port_fops);
Amit Shahfb08bd22009-12-21 21:36:04 +05301108
1109 devt = MKDEV(portdev->chr_major, id);
1110 err = cdev_add(&port->cdev, devt, 1);
1111 if (err < 0) {
1112 dev_err(&port->portdev->vdev->dev,
1113 "Error %d adding cdev for port %u\n", err, id);
1114 goto free_port;
1115 }
1116 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1117 devt, port, "vport%up%u",
1118 port->portdev->drv_index, id);
1119 if (IS_ERR(port->dev)) {
1120 err = PTR_ERR(port->dev);
1121 dev_err(&port->portdev->vdev->dev,
1122 "Error %d creating device for port %u\n",
1123 err, id);
1124 goto free_cdev;
1125 }
1126
Amit Shah203baab2010-01-18 19:15:12 +05301127 spin_lock_init(&port->inbuf_lock);
Amit Shah2030fa42009-12-21 21:49:30 +05301128 init_waitqueue_head(&port->waitqueue);
Amit Shah203baab2010-01-18 19:15:12 +05301129
1130 inbuf = alloc_buf(PAGE_SIZE);
1131 if (!inbuf) {
Amit Shah1c85bf32010-01-18 19:15:07 +05301132 err = -ENOMEM;
Amit Shahfb08bd22009-12-21 21:36:04 +05301133 goto free_device;
Amit Shah1c85bf32010-01-18 19:15:07 +05301134 }
Rusty Russell31610432007-10-22 11:03:39 +10001135
Amit Shah203baab2010-01-18 19:15:12 +05301136 /* Register the input buffer the first time. */
1137 add_inbuf(port->in_vq, inbuf);
1138
Amit Shah17634ba2009-12-21 21:03:25 +05301139 /*
1140 * If we're not using multiport support, this has to be a console port
1141 */
1142 if (!use_multiport(port->portdev)) {
1143 err = init_port_console(port);
1144 if (err)
1145 goto free_inbuf;
1146 }
1147
1148 spin_lock_irq(&portdev->ports_lock);
1149 list_add_tail(&port->list, &port->portdev->ports);
1150 spin_unlock_irq(&portdev->ports_lock);
1151
1152 /*
1153 * Tell the Host we're set so that it can send us various
1154 * configuration parameters for this port (eg, port name,
1155 * caching, whether this is a console port, etc.)
1156 */
1157 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah38edf582010-01-18 19:15:05 +05301158
Amit Shahd99393e2009-12-21 22:36:21 +05301159 if (pdrvdata.debugfs_dir) {
1160 /*
1161 * Finally, create the debugfs file that we can use to
1162 * inspect a port's state at any time
1163 */
1164 sprintf(debugfs_name, "vport%up%u",
1165 port->portdev->drv_index, id);
1166 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1167 pdrvdata.debugfs_dir,
1168 port,
1169 &port_debugfs_ops);
1170 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301171 return 0;
1172
1173free_inbuf:
Amit Shah203baab2010-01-18 19:15:12 +05301174 free_buf(inbuf);
Amit Shahfb08bd22009-12-21 21:36:04 +05301175free_device:
1176 device_destroy(pdrvdata.class, port->dev->devt);
1177free_cdev:
1178 cdev_del(&port->cdev);
Amit Shah1c85bf32010-01-18 19:15:07 +05301179free_port:
1180 kfree(port);
1181fail:
1182 return err;
1183}
1184
Amit Shah7f5d8102009-12-21 22:22:08 +05301185/*
1186 * The workhandler for config-space updates.
1187 *
1188 * This is called when ports are hot-added.
1189 */
1190static void config_work_handler(struct work_struct *work)
1191{
1192 struct virtio_console_config virtconconf;
1193 struct ports_device *portdev;
1194 struct virtio_device *vdev;
1195 int err;
1196
1197 portdev = container_of(work, struct ports_device, config_work);
1198
1199 vdev = portdev->vdev;
1200 vdev->config->get(vdev,
1201 offsetof(struct virtio_console_config, nr_ports),
1202 &virtconconf.nr_ports,
1203 sizeof(virtconconf.nr_ports));
1204
1205 if (portdev->config.nr_ports == virtconconf.nr_ports) {
1206 /*
1207 * Port 0 got hot-added. Since we already did all the
1208 * other initialisation for it, just tell the Host
Amit Shah1f7aa422009-12-21 22:27:31 +05301209 * that the port is ready if we find the port. In
1210 * case the port was hot-removed earlier, we call
1211 * add_port to add the port.
Amit Shah7f5d8102009-12-21 22:22:08 +05301212 */
1213 struct port *port;
1214
1215 port = find_port_by_id(portdev, 0);
Amit Shah1f7aa422009-12-21 22:27:31 +05301216 if (!port)
1217 add_port(portdev, 0);
1218 else
1219 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah7f5d8102009-12-21 22:22:08 +05301220 return;
1221 }
1222 if (virtconconf.nr_ports > portdev->config.max_nr_ports) {
1223 dev_warn(&vdev->dev,
1224 "More ports specified (%u) than allowed (%u)",
1225 portdev->config.nr_ports + 1,
1226 portdev->config.max_nr_ports);
1227 return;
1228 }
1229 if (virtconconf.nr_ports < portdev->config.nr_ports)
1230 return;
1231
1232 /* Hot-add ports */
1233 while (virtconconf.nr_ports - portdev->config.nr_ports) {
1234 err = add_port(portdev, portdev->config.nr_ports);
1235 if (err)
1236 break;
1237 portdev->config.nr_ports++;
1238 }
1239}
1240
Amit Shah2658a792010-01-18 19:15:11 +05301241static int init_vqs(struct ports_device *portdev)
1242{
1243 vq_callback_t **io_callbacks;
1244 char **io_names;
1245 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301246 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301247 int err;
1248
Amit Shah17634ba2009-12-21 21:03:25 +05301249 nr_ports = portdev->config.max_nr_ports;
1250 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301251
1252 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1253 if (!vqs) {
1254 err = -ENOMEM;
1255 goto fail;
1256 }
1257 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1258 if (!io_callbacks) {
1259 err = -ENOMEM;
1260 goto free_vqs;
1261 }
1262 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1263 if (!io_names) {
1264 err = -ENOMEM;
1265 goto free_callbacks;
1266 }
1267 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1268 GFP_KERNEL);
1269 if (!portdev->in_vqs) {
1270 err = -ENOMEM;
1271 goto free_names;
1272 }
1273 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1274 GFP_KERNEL);
1275 if (!portdev->out_vqs) {
1276 err = -ENOMEM;
1277 goto free_invqs;
1278 }
1279
Amit Shah17634ba2009-12-21 21:03:25 +05301280 /*
1281 * For backward compat (newer host but older guest), the host
1282 * spawns a console port first and also inits the vqs for port
1283 * 0 before others.
1284 */
1285 j = 0;
1286 io_callbacks[j] = in_intr;
1287 io_callbacks[j + 1] = NULL;
1288 io_names[j] = "input";
1289 io_names[j + 1] = "output";
1290 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301291
Amit Shah17634ba2009-12-21 21:03:25 +05301292 if (use_multiport(portdev)) {
1293 io_callbacks[j] = control_intr;
1294 io_callbacks[j + 1] = NULL;
1295 io_names[j] = "control-i";
1296 io_names[j + 1] = "control-o";
1297
1298 for (i = 1; i < nr_ports; i++) {
1299 j += 2;
1300 io_callbacks[j] = in_intr;
1301 io_callbacks[j + 1] = NULL;
1302 io_names[j] = "input";
1303 io_names[j + 1] = "output";
1304 }
1305 }
Amit Shah2658a792010-01-18 19:15:11 +05301306 /* Find the queues. */
1307 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1308 io_callbacks,
1309 (const char **)io_names);
1310 if (err)
1311 goto free_outvqs;
1312
Amit Shah17634ba2009-12-21 21:03:25 +05301313 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301314 portdev->in_vqs[0] = vqs[0];
1315 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301316 j += 2;
1317 if (use_multiport(portdev)) {
1318 portdev->c_ivq = vqs[j];
1319 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301320
Amit Shah17634ba2009-12-21 21:03:25 +05301321 for (i = 1; i < nr_ports; i++) {
1322 j += 2;
1323 portdev->in_vqs[i] = vqs[j];
1324 portdev->out_vqs[i] = vqs[j + 1];
1325 }
1326 }
Amit Shah2658a792010-01-18 19:15:11 +05301327 kfree(io_callbacks);
1328 kfree(io_names);
1329 kfree(vqs);
1330
1331 return 0;
1332
1333free_names:
1334 kfree(io_names);
1335free_callbacks:
1336 kfree(io_callbacks);
1337free_outvqs:
1338 kfree(portdev->out_vqs);
1339free_invqs:
1340 kfree(portdev->in_vqs);
1341free_vqs:
1342 kfree(vqs);
1343fail:
1344 return err;
1345}
1346
Amit Shahfb08bd22009-12-21 21:36:04 +05301347static const struct file_operations portdev_fops = {
1348 .owner = THIS_MODULE,
1349};
1350
Amit Shah1c85bf32010-01-18 19:15:07 +05301351/*
1352 * Once we're further in boot, we get probed like any other virtio
1353 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301354 *
1355 * If the host also supports multiple console ports, we check the
1356 * config space to see how many ports the host has spawned. We
1357 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301358 */
1359static int __devinit virtcons_probe(struct virtio_device *vdev)
1360{
Amit Shah1c85bf32010-01-18 19:15:07 +05301361 struct ports_device *portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301362 u32 i;
Amit Shah1c85bf32010-01-18 19:15:07 +05301363 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301364 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301365
1366 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1367 if (!portdev) {
1368 err = -ENOMEM;
1369 goto fail;
1370 }
1371
1372 /* Attach this portdev to this virtio_device, and vice-versa. */
1373 portdev->vdev = vdev;
1374 vdev->priv = portdev;
1375
Amit Shahfb08bd22009-12-21 21:36:04 +05301376 spin_lock_irq(&pdrvdata_lock);
1377 portdev->drv_index = pdrvdata.index++;
1378 spin_unlock_irq(&pdrvdata_lock);
1379
1380 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1381 &portdev_fops);
1382 if (portdev->chr_major < 0) {
1383 dev_err(&vdev->dev,
1384 "Error %d registering chrdev for device %u\n",
1385 portdev->chr_major, portdev->drv_index);
1386 err = portdev->chr_major;
1387 goto free;
1388 }
1389
Amit Shah17634ba2009-12-21 21:03:25 +05301390 multiport = false;
1391 portdev->config.nr_ports = 1;
1392 portdev->config.max_nr_ports = 1;
1393 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1394 multiport = true;
1395 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1396
1397 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1398 nr_ports),
1399 &portdev->config.nr_ports,
1400 sizeof(portdev->config.nr_ports));
1401 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1402 max_nr_ports),
1403 &portdev->config.max_nr_ports,
1404 sizeof(portdev->config.max_nr_ports));
1405 if (portdev->config.nr_ports > portdev->config.max_nr_ports) {
1406 dev_warn(&vdev->dev,
1407 "More ports (%u) specified than allowed (%u). Will init %u ports.",
1408 portdev->config.nr_ports,
1409 portdev->config.max_nr_ports,
1410 portdev->config.max_nr_ports);
1411
1412 portdev->config.nr_ports = portdev->config.max_nr_ports;
1413 }
1414 }
1415
1416 /* Let the Host know we support multiple ports.*/
1417 vdev->config->finalize_features(vdev);
1418
Amit Shah2658a792010-01-18 19:15:11 +05301419 err = init_vqs(portdev);
1420 if (err < 0) {
1421 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301422 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301423 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301424
Amit Shah17634ba2009-12-21 21:03:25 +05301425 spin_lock_init(&portdev->ports_lock);
1426 INIT_LIST_HEAD(&portdev->ports);
1427
1428 if (multiport) {
1429 spin_lock_init(&portdev->cvq_lock);
1430 INIT_WORK(&portdev->control_work, &control_work_handler);
Amit Shah7f5d8102009-12-21 22:22:08 +05301431 INIT_WORK(&portdev->config_work, &config_work_handler);
Amit Shah17634ba2009-12-21 21:03:25 +05301432
1433 fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1434 }
1435
1436 for (i = 0; i < portdev->config.nr_ports; i++)
1437 add_port(portdev, i);
Amit Shah1c85bf32010-01-18 19:15:07 +05301438
Rusty Russell971f3392010-01-18 19:14:56 +05301439 /* Start using the new console output. */
1440 early_put_chars = NULL;
Rusty Russell31610432007-10-22 11:03:39 +10001441 return 0;
1442
Amit Shahfb08bd22009-12-21 21:36:04 +05301443free_chrdev:
1444 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001445free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301446 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001447fail:
1448 return err;
1449}
1450
Amit Shah71778762010-02-12 10:32:16 +05301451static void virtcons_remove(struct virtio_device *vdev)
1452{
1453 struct ports_device *portdev;
1454 struct port *port, *port2;
1455 struct port_buffer *buf;
1456 unsigned int len;
1457
1458 portdev = vdev->priv;
1459
1460 cancel_work_sync(&portdev->control_work);
1461 cancel_work_sync(&portdev->config_work);
1462
1463 list_for_each_entry_safe(port, port2, &portdev->ports, list)
1464 remove_port(port);
1465
1466 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1467
1468 while ((buf = portdev->c_ivq->vq_ops->get_buf(portdev->c_ivq, &len)))
1469 free_buf(buf);
1470
1471 while ((buf = portdev->c_ivq->vq_ops->detach_unused_buf(portdev->c_ivq)))
1472 free_buf(buf);
1473
1474 vdev->config->del_vqs(vdev);
1475 kfree(portdev->in_vqs);
1476 kfree(portdev->out_vqs);
1477
1478 kfree(portdev);
1479}
1480
Rusty Russell31610432007-10-22 11:03:39 +10001481static struct virtio_device_id id_table[] = {
1482 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1483 { 0 },
1484};
1485
Christian Borntraegerc2983452008-11-25 13:36:26 +01001486static unsigned int features[] = {
1487 VIRTIO_CONSOLE_F_SIZE,
Amit Shah17634ba2009-12-21 21:03:25 +05301488 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001489};
1490
Rusty Russell31610432007-10-22 11:03:39 +10001491static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001492 .feature_table = features,
1493 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001494 .driver.name = KBUILD_MODNAME,
1495 .driver.owner = THIS_MODULE,
1496 .id_table = id_table,
1497 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301498 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301499 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001500};
1501
1502static int __init init(void)
1503{
Amit Shahfb08bd22009-12-21 21:36:04 +05301504 int err;
1505
1506 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1507 if (IS_ERR(pdrvdata.class)) {
1508 err = PTR_ERR(pdrvdata.class);
1509 pr_err("Error %d creating virtio-ports class\n", err);
1510 return err;
1511 }
Amit Shahd99393e2009-12-21 22:36:21 +05301512
1513 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1514 if (!pdrvdata.debugfs_dir) {
1515 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1516 PTR_ERR(pdrvdata.debugfs_dir));
1517 }
Amit Shah38edf582010-01-18 19:15:05 +05301518 INIT_LIST_HEAD(&pdrvdata.consoles);
1519
Rusty Russell31610432007-10-22 11:03:39 +10001520 return register_virtio_driver(&virtio_console);
1521}
Amit Shah71778762010-02-12 10:32:16 +05301522
1523static void __exit fini(void)
1524{
1525 unregister_virtio_driver(&virtio_console);
1526
1527 class_destroy(pdrvdata.class);
1528 if (pdrvdata.debugfs_dir)
1529 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1530}
Rusty Russell31610432007-10-22 11:03:39 +10001531module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301532module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001533
1534MODULE_DEVICE_TABLE(virtio, id_table);
1535MODULE_DESCRIPTION("Virtio console driver");
1536MODULE_LICENSE("GPL");