blob: 44288ce0cb45520b144d9eec98a942c7812025c7 [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;
Amit Shahd6933562010-02-12 10:32:18 +0530333 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530334
335 vq = port->in_vq;
336 if (port->inbuf)
337 buf = port->inbuf;
338 else
339 buf = vq->vq_ops->get_buf(vq, &len);
340
Amit Shahd6933562010-02-12 10:32:18 +0530341 ret = 0;
342 while (buf) {
343 if (add_inbuf(vq, buf) < 0) {
344 ret++;
345 free_buf(buf);
346 }
347 buf = vq->vq_ops->get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530348 }
Amit Shah88f251a2009-12-21 22:15:30 +0530349 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530350 if (ret)
351 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
352 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530353}
354
Amit Shah203baab2010-01-18 19:15:12 +0530355static bool port_has_data(struct port *port)
356{
357 unsigned long flags;
358 bool ret;
359
Amit Shah203baab2010-01-18 19:15:12 +0530360 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +0530361 if (port->inbuf) {
Amit Shah203baab2010-01-18 19:15:12 +0530362 ret = true;
Amit Shahd6933562010-02-12 10:32:18 +0530363 goto out;
364 }
365 port->inbuf = get_inbuf(port);
366 if (port->inbuf) {
367 ret = true;
368 goto out;
369 }
370 ret = false;
371out:
Amit Shah203baab2010-01-18 19:15:12 +0530372 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530373 return ret;
374}
375
Amit Shah17634ba2009-12-21 21:03:25 +0530376static ssize_t send_control_msg(struct port *port, unsigned int event,
377 unsigned int value)
378{
379 struct scatterlist sg[1];
380 struct virtio_console_control cpkt;
381 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530382 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530383
384 if (!use_multiport(port->portdev))
385 return 0;
386
387 cpkt.id = port->id;
388 cpkt.event = event;
389 cpkt.value = value;
390
391 vq = port->portdev->c_ovq;
392
393 sg_init_one(sg, &cpkt, sizeof(cpkt));
394 if (vq->vq_ops->add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
395 vq->vq_ops->kick(vq);
396 while (!vq->vq_ops->get_buf(vq, &len))
397 cpu_relax();
398 }
399 return 0;
400}
401
Amit Shahf997f00b2009-12-21 17:28:51 +0530402static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
403{
404 struct scatterlist sg[1];
405 struct virtqueue *out_vq;
406 ssize_t ret;
407 unsigned int len;
408
409 out_vq = port->out_vq;
410
411 sg_init_one(sg, in_buf, in_count);
412 ret = out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, in_buf);
413
414 /* Tell Host to go! */
415 out_vq->vq_ops->kick(out_vq);
416
417 if (ret < 0) {
418 len = 0;
419 goto fail;
420 }
421
422 /*
423 * Wait till the host acknowledges it pushed out the data we
424 * sent. Also ensure we return to userspace the number of
425 * bytes that were successfully consumed by the host.
426 */
427 while (!out_vq->vq_ops->get_buf(out_vq, &len))
428 cpu_relax();
429fail:
430 /* We're expected to return the amount of data we wrote */
431 return len;
432}
433
Amit Shah203baab2010-01-18 19:15:12 +0530434/*
435 * Give out the data that's requested from the buffer that we have
436 * queued up.
437 */
Amit Shahb766cee2009-12-21 21:26:45 +0530438static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
439 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530440{
441 struct port_buffer *buf;
442 unsigned long flags;
443
444 if (!out_count || !port_has_data(port))
445 return 0;
446
447 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530448 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530449
Amit Shahb766cee2009-12-21 21:26:45 +0530450 if (to_user) {
451 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530452
Amit Shahb766cee2009-12-21 21:26:45 +0530453 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
454 if (ret)
455 return -EFAULT;
456 } else {
457 memcpy(out_buf, buf->buf + buf->offset, out_count);
458 }
459
Amit Shah203baab2010-01-18 19:15:12 +0530460 buf->offset += out_count;
461
462 if (buf->offset == buf->len) {
463 /*
464 * We're done using all the data in this buffer.
465 * Re-queue so that the Host can send us more data.
466 */
467 spin_lock_irqsave(&port->inbuf_lock, flags);
468 port->inbuf = NULL;
469
470 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530471 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530472
473 spin_unlock_irqrestore(&port->inbuf_lock, flags);
474 }
Amit Shahb766cee2009-12-21 21:26:45 +0530475 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530476 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530477}
478
Amit Shah2030fa42009-12-21 21:49:30 +0530479/* The condition that must be true for polling to end */
480static bool wait_is_over(struct port *port)
481{
482 return port_has_data(port) || !port->host_connected;
483}
484
485static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
486 size_t count, loff_t *offp)
487{
488 struct port *port;
489 ssize_t ret;
490
491 port = filp->private_data;
492
493 if (!port_has_data(port)) {
494 /*
495 * If nothing's connected on the host just return 0 in
496 * case of list_empty; this tells the userspace app
497 * that there's no connection
498 */
499 if (!port->host_connected)
500 return 0;
501 if (filp->f_flags & O_NONBLOCK)
502 return -EAGAIN;
503
504 ret = wait_event_interruptible(port->waitqueue,
505 wait_is_over(port));
506 if (ret < 0)
507 return ret;
508 }
509 /*
510 * We could've received a disconnection message while we were
511 * waiting for more data.
512 *
513 * This check is not clubbed in the if() statement above as we
514 * might receive some data as well as the host could get
515 * disconnected after we got woken up from our wait. So we
516 * really want to give off whatever data we have and only then
517 * check for host_connected.
518 */
519 if (!port_has_data(port) && !port->host_connected)
520 return 0;
521
522 return fill_readbuf(port, ubuf, count, true);
523}
524
525static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
526 size_t count, loff_t *offp)
527{
528 struct port *port;
529 char *buf;
530 ssize_t ret;
531
532 port = filp->private_data;
533
534 count = min((size_t)(32 * 1024), count);
535
536 buf = kmalloc(count, GFP_KERNEL);
537 if (!buf)
538 return -ENOMEM;
539
540 ret = copy_from_user(buf, ubuf, count);
541 if (ret) {
542 ret = -EFAULT;
543 goto free_buf;
544 }
545
546 ret = send_buf(port, buf, count);
547free_buf:
548 kfree(buf);
549 return ret;
550}
551
552static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
553{
554 struct port *port;
555 unsigned int ret;
556
557 port = filp->private_data;
558 poll_wait(filp, &port->waitqueue, wait);
559
560 ret = 0;
561 if (port->inbuf)
562 ret |= POLLIN | POLLRDNORM;
563 if (port->host_connected)
564 ret |= POLLOUT;
565 if (!port->host_connected)
566 ret |= POLLHUP;
567
568 return ret;
569}
570
571static int port_fops_release(struct inode *inode, struct file *filp)
572{
573 struct port *port;
574
575 port = filp->private_data;
576
577 /* Notify host of port being closed */
578 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
579
Amit Shah88f251a2009-12-21 22:15:30 +0530580 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530581 port->guest_connected = false;
582
Amit Shah88f251a2009-12-21 22:15:30 +0530583 discard_port_data(port);
584
585 spin_unlock_irq(&port->inbuf_lock);
586
Amit Shah2030fa42009-12-21 21:49:30 +0530587 return 0;
588}
589
590static int port_fops_open(struct inode *inode, struct file *filp)
591{
592 struct cdev *cdev = inode->i_cdev;
593 struct port *port;
594
595 port = container_of(cdev, struct port, cdev);
596 filp->private_data = port;
597
598 /*
599 * Don't allow opening of console port devices -- that's done
600 * via /dev/hvc
601 */
602 if (is_console_port(port))
603 return -ENXIO;
604
Amit Shah3c7969c2009-11-26 11:25:38 +0530605 /* Allow only one process to open a particular port at a time */
606 spin_lock_irq(&port->inbuf_lock);
607 if (port->guest_connected) {
608 spin_unlock_irq(&port->inbuf_lock);
609 return -EMFILE;
610 }
611
612 port->guest_connected = true;
613 spin_unlock_irq(&port->inbuf_lock);
614
Amit Shah2030fa42009-12-21 21:49:30 +0530615 /* Notify host of port being opened */
616 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
617
618 return 0;
619}
620
621/*
622 * The file operations that we support: programs in the guest can open
623 * a console device, read from it, write to it, poll for data and
624 * close it. The devices are at
625 * /dev/vport<device number>p<port number>
626 */
627static const struct file_operations port_fops = {
628 .owner = THIS_MODULE,
629 .open = port_fops_open,
630 .read = port_fops_read,
631 .write = port_fops_write,
632 .poll = port_fops_poll,
633 .release = port_fops_release,
634};
635
Amit Shahe27b5192010-01-18 19:15:02 +0530636/*
Rusty Russella23ea922010-01-18 19:14:55 +0530637 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000638 *
Rusty Russella23ea922010-01-18 19:14:55 +0530639 * We turn the characters into a scatter-gather list, add it to the
640 * output queue and then kick the Host. Then we sit here waiting for
641 * it to finish: inefficient in theory, but in practice
642 * implementations will do it immediately (lguest's Launcher does).
643 */
Rusty Russell31610432007-10-22 11:03:39 +1000644static int put_chars(u32 vtermno, const char *buf, int count)
645{
Rusty Russell21206ed2010-01-18 19:15:00 +0530646 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530647
648 port = find_port_by_vtermno(vtermno);
649 if (!port)
650 return 0;
Rusty Russell31610432007-10-22 11:03:39 +1000651
Rusty Russell971f3392010-01-18 19:14:56 +0530652 if (unlikely(early_put_chars))
653 return early_put_chars(vtermno, buf, count);
654
Amit Shahf997f00b2009-12-21 17:28:51 +0530655 return send_buf(port, (void *)buf, count);
Rusty Russell31610432007-10-22 11:03:39 +1000656}
657
Rusty Russella23ea922010-01-18 19:14:55 +0530658/*
Rusty Russella23ea922010-01-18 19:14:55 +0530659 * get_chars() is the callback from the hvc_console infrastructure
660 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000661 *
Amit Shah203baab2010-01-18 19:15:12 +0530662 * We call out to fill_readbuf that gets us the required data from the
663 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530664 */
Rusty Russell31610432007-10-22 11:03:39 +1000665static int get_chars(u32 vtermno, char *buf, int count)
666{
Rusty Russell21206ed2010-01-18 19:15:00 +0530667 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000668
Amit Shah38edf582010-01-18 19:15:05 +0530669 port = find_port_by_vtermno(vtermno);
670 if (!port)
671 return 0;
Rusty Russell21206ed2010-01-18 19:15:00 +0530672
673 /* If we don't have an input queue yet, we can't get input. */
674 BUG_ON(!port->in_vq);
675
Amit Shahb766cee2009-12-21 21:26:45 +0530676 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000677}
Rusty Russell31610432007-10-22 11:03:39 +1000678
Amit Shahcb06e362010-01-18 19:15:08 +0530679static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100680{
Amit Shahcb06e362010-01-18 19:15:08 +0530681 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100682 struct winsize ws;
683
Amit Shah2de16a42010-03-19 17:36:44 +0530684 /* The port could have been hot-unplugged */
685 if (!port)
686 return;
687
Amit Shahcb06e362010-01-18 19:15:08 +0530688 vdev = port->portdev->vdev;
689 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
690 vdev->config->get(vdev,
691 offsetof(struct virtio_console_config, cols),
692 &ws.ws_col, sizeof(u16));
693 vdev->config->get(vdev,
694 offsetof(struct virtio_console_config, rows),
695 &ws.ws_row, sizeof(u16));
Amit Shah4f23c572010-01-18 19:15:09 +0530696 hvc_resize(port->cons.hvc, ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100697 }
698}
699
Amit Shah38edf582010-01-18 19:15:05 +0530700/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200701static int notifier_add_vio(struct hvc_struct *hp, int data)
702{
Amit Shah38edf582010-01-18 19:15:05 +0530703 struct port *port;
704
705 port = find_port_by_vtermno(hp->vtermno);
706 if (!port)
707 return -EINVAL;
708
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200709 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530710 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100711
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200712 return 0;
713}
714
715static void notifier_del_vio(struct hvc_struct *hp, int data)
716{
717 hp->irq_requested = 0;
718}
719
Amit Shah17634ba2009-12-21 21:03:25 +0530720/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530721static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530722 .get_chars = get_chars,
723 .put_chars = put_chars,
724 .notifier_add = notifier_add_vio,
725 .notifier_del = notifier_del_vio,
726 .notifier_hangup = notifier_del_vio,
727};
728
729/*
730 * Console drivers are initialized very early so boot messages can go
731 * out, so we do things slightly differently from the generic virtio
732 * initialization of the net and block drivers.
733 *
734 * At this stage, the console is output-only. It's too early to set
735 * up a virtqueue, so we let the drivers do some boutique early-output
736 * thing.
737 */
738int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
739{
740 early_put_chars = put_chars;
741 return hvc_instantiate(0, 0, &hv_ops);
742}
743
Amit Shah17634ba2009-12-21 21:03:25 +0530744int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530745{
746 int ret;
747
748 /*
749 * The Host's telling us this port is a console port. Hook it
750 * up with an hvc console.
751 *
752 * To set up and manage our virtual console, we call
753 * hvc_alloc().
754 *
755 * The first argument of hvc_alloc() is the virtual console
756 * number. The second argument is the parameter for the
757 * notification mechanism (like irq number). We currently
758 * leave this as zero, virtqueues have implicit notifications.
759 *
760 * The third argument is a "struct hv_ops" containing the
761 * put_chars() get_chars(), notifier_add() and notifier_del()
762 * pointers. The final argument is the output buffer size: we
763 * can do any size, so we put PAGE_SIZE here.
764 */
765 port->cons.vtermno = pdrvdata.next_vtermno;
766
767 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
768 if (IS_ERR(port->cons.hvc)) {
769 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530770 dev_err(port->dev,
771 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530772 port->cons.hvc = NULL;
773 return ret;
774 }
775 spin_lock_irq(&pdrvdata_lock);
776 pdrvdata.next_vtermno++;
777 list_add_tail(&port->cons.list, &pdrvdata.consoles);
778 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530779 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530780
Amit Shah2030fa42009-12-21 21:49:30 +0530781 /* Notify host of port being opened */
782 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
783
Amit Shahcfa6d372010-01-18 19:15:10 +0530784 return 0;
785}
786
Amit Shah431edb82009-12-21 21:57:40 +0530787static ssize_t show_port_name(struct device *dev,
788 struct device_attribute *attr, char *buffer)
789{
790 struct port *port;
791
792 port = dev_get_drvdata(dev);
793
794 return sprintf(buffer, "%s\n", port->name);
795}
796
797static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
798
799static struct attribute *port_sysfs_entries[] = {
800 &dev_attr_name.attr,
801 NULL
802};
803
804static struct attribute_group port_attribute_group = {
805 .name = NULL, /* put in device directory */
806 .attrs = port_sysfs_entries,
807};
808
Amit Shahd99393e2009-12-21 22:36:21 +0530809static int debugfs_open(struct inode *inode, struct file *filp)
810{
811 filp->private_data = inode->i_private;
812 return 0;
813}
814
815static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
816 size_t count, loff_t *offp)
817{
818 struct port *port;
819 char *buf;
820 ssize_t ret, out_offset, out_count;
821
822 out_count = 1024;
823 buf = kmalloc(out_count, GFP_KERNEL);
824 if (!buf)
825 return -ENOMEM;
826
827 port = filp->private_data;
828 out_offset = 0;
829 out_offset += snprintf(buf + out_offset, out_count,
830 "name: %s\n", port->name ? port->name : "");
831 out_offset += snprintf(buf + out_offset, out_count - out_offset,
832 "guest_connected: %d\n", port->guest_connected);
833 out_offset += snprintf(buf + out_offset, out_count - out_offset,
834 "host_connected: %d\n", port->host_connected);
835 out_offset += snprintf(buf + out_offset, out_count - out_offset,
836 "is_console: %s\n",
837 is_console_port(port) ? "yes" : "no");
838 out_offset += snprintf(buf + out_offset, out_count - out_offset,
839 "console_vtermno: %u\n", port->cons.vtermno);
840
841 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
842 kfree(buf);
843 return ret;
844}
845
846static const struct file_operations port_debugfs_ops = {
847 .owner = THIS_MODULE,
848 .open = debugfs_open,
849 .read = debugfs_read,
850};
851
Amit Shah1f7aa422009-12-21 22:27:31 +0530852/* Remove all port-specific data. */
853static int remove_port(struct port *port)
854{
Amit Shaha9cdd482010-02-12 10:32:15 +0530855 struct port_buffer *buf;
856
Amit Shah1f7aa422009-12-21 22:27:31 +0530857 spin_lock_irq(&port->portdev->ports_lock);
858 list_del(&port->list);
859 spin_unlock_irq(&port->portdev->ports_lock);
860
861 if (is_console_port(port)) {
862 spin_lock_irq(&pdrvdata_lock);
863 list_del(&port->cons.list);
864 spin_unlock_irq(&pdrvdata_lock);
865 hvc_remove(port->cons.hvc);
866 }
867 if (port->guest_connected)
868 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
869
Amit Shah1f7aa422009-12-21 22:27:31 +0530870 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
871 device_destroy(pdrvdata.class, port->dev->devt);
872 cdev_del(&port->cdev);
873
Amit Shaha9cdd482010-02-12 10:32:15 +0530874 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +0530875 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +0530876
877 /* Remove buffers we queued up for the Host to send us data in. */
878 while ((buf = port->in_vq->vq_ops->detach_unused_buf(port->in_vq)))
879 free_buf(buf);
880
Amit Shah1f7aa422009-12-21 22:27:31 +0530881 kfree(port->name);
882
Amit Shahd99393e2009-12-21 22:36:21 +0530883 debugfs_remove(port->debugfs_file);
884
Amit Shah1f7aa422009-12-21 22:27:31 +0530885 kfree(port);
886 return 0;
887}
888
Amit Shah17634ba2009-12-21 21:03:25 +0530889/* Any private messages that the Host and Guest want to share */
890static void handle_control_message(struct ports_device *portdev,
891 struct port_buffer *buf)
892{
893 struct virtio_console_control *cpkt;
894 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +0530895 size_t name_size;
896 int err;
Amit Shah17634ba2009-12-21 21:03:25 +0530897
898 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
899
900 port = find_port_by_id(portdev, cpkt->id);
901 if (!port) {
902 /* No valid header at start of buffer. Drop it. */
903 dev_dbg(&portdev->vdev->dev,
904 "Invalid index %u in control packet\n", cpkt->id);
905 return;
906 }
907
908 switch (cpkt->event) {
909 case VIRTIO_CONSOLE_CONSOLE_PORT:
910 if (!cpkt->value)
911 break;
912 if (is_console_port(port))
913 break;
914
915 init_port_console(port);
916 /*
917 * Could remove the port here in case init fails - but
918 * have to notify the host first.
919 */
920 break;
921 case VIRTIO_CONSOLE_RESIZE:
922 if (!is_console_port(port))
923 break;
924 port->cons.hvc->irq_requested = 1;
925 resize_console(port);
926 break;
Amit Shah2030fa42009-12-21 21:49:30 +0530927 case VIRTIO_CONSOLE_PORT_OPEN:
928 port->host_connected = cpkt->value;
929 wake_up_interruptible(&port->waitqueue);
930 break;
Amit Shah431edb82009-12-21 21:57:40 +0530931 case VIRTIO_CONSOLE_PORT_NAME:
932 /*
933 * Skip the size of the header and the cpkt to get the size
934 * of the name that was sent
935 */
936 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
937
938 port->name = kmalloc(name_size, GFP_KERNEL);
939 if (!port->name) {
940 dev_err(port->dev,
941 "Not enough space to store port name\n");
942 break;
943 }
944 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
945 name_size - 1);
946 port->name[name_size - 1] = 0;
947
948 /*
949 * Since we only have one sysfs attribute, 'name',
950 * create it only if we have a name for the port.
951 */
952 err = sysfs_create_group(&port->dev->kobj,
953 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +0530954 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +0530955 dev_err(port->dev,
956 "Error %d creating sysfs device attributes\n",
957 err);
Amit Shahec642132010-03-19 17:36:43 +0530958 } else {
959 /*
960 * Generate a udev event so that appropriate
961 * symlinks can be created based on udev
962 * rules.
963 */
964 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
965 }
Amit Shah431edb82009-12-21 21:57:40 +0530966 break;
Amit Shah1f7aa422009-12-21 22:27:31 +0530967 case VIRTIO_CONSOLE_PORT_REMOVE:
968 /*
969 * Hot unplug the port. We don't decrement nr_ports
970 * since we don't want to deal with extra complexities
971 * of using the lowest-available port id: We can just
972 * pick up the nr_ports number as the id and not have
973 * userspace send it to us. This helps us in two
974 * ways:
975 *
976 * - We don't need to have a 'port_id' field in the
977 * config space when a port is hot-added. This is a
978 * good thing as we might queue up multiple hotplug
979 * requests issued in our workqueue.
980 *
981 * - Another way to deal with this would have been to
982 * use a bitmap of the active ports and select the
983 * lowest non-active port from that map. That
984 * bloats the already tight config space and we
985 * would end up artificially limiting the
986 * max. number of ports to sizeof(bitmap). Right
987 * now we can support 2^32 ports (as the port id is
988 * stored in a u32 type).
989 *
990 */
991 remove_port(port);
992 break;
Amit Shah17634ba2009-12-21 21:03:25 +0530993 }
994}
995
996static void control_work_handler(struct work_struct *work)
997{
998 struct ports_device *portdev;
999 struct virtqueue *vq;
1000 struct port_buffer *buf;
1001 unsigned int len;
1002
1003 portdev = container_of(work, struct ports_device, control_work);
1004 vq = portdev->c_ivq;
1005
1006 spin_lock(&portdev->cvq_lock);
1007 while ((buf = vq->vq_ops->get_buf(vq, &len))) {
1008 spin_unlock(&portdev->cvq_lock);
1009
1010 buf->len = len;
1011 buf->offset = 0;
1012
1013 handle_control_message(portdev, buf);
1014
1015 spin_lock(&portdev->cvq_lock);
1016 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1017 dev_warn(&portdev->vdev->dev,
1018 "Error adding buffer to queue\n");
1019 free_buf(buf);
1020 }
1021 }
1022 spin_unlock(&portdev->cvq_lock);
1023}
1024
1025static void in_intr(struct virtqueue *vq)
1026{
1027 struct port *port;
1028 unsigned long flags;
1029
1030 port = find_port_by_vq(vq->vdev->priv, vq);
1031 if (!port)
1032 return;
1033
1034 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301035 if (!port->inbuf)
1036 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301037
Amit Shah88f251a2009-12-21 22:15:30 +05301038 /*
1039 * Don't queue up data when port is closed. This condition
1040 * can be reached when a console port is not yet connected (no
1041 * tty is spawned) and the host sends out data to console
1042 * ports. For generic serial ports, the host won't
1043 * (shouldn't) send data till the guest is connected.
1044 */
1045 if (!port->guest_connected)
1046 discard_port_data(port);
1047
Amit Shah17634ba2009-12-21 21:03:25 +05301048 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1049
Amit Shah2030fa42009-12-21 21:49:30 +05301050 wake_up_interruptible(&port->waitqueue);
1051
Amit Shah17634ba2009-12-21 21:03:25 +05301052 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1053 hvc_kick();
1054}
1055
1056static void control_intr(struct virtqueue *vq)
1057{
1058 struct ports_device *portdev;
1059
1060 portdev = vq->vdev->priv;
1061 schedule_work(&portdev->control_work);
1062}
1063
Amit Shah7f5d8102009-12-21 22:22:08 +05301064static void config_intr(struct virtio_device *vdev)
1065{
1066 struct ports_device *portdev;
1067
1068 portdev = vdev->priv;
1069 if (use_multiport(portdev)) {
1070 /* Handle port hot-add */
1071 schedule_work(&portdev->config_work);
1072 }
1073 /*
1074 * We'll use this way of resizing only for legacy support.
1075 * For newer userspace (VIRTIO_CONSOLE_F_MULTPORT+), use
1076 * control messages to indicate console size changes so that
1077 * it can be done per-port
1078 */
1079 resize_console(find_port_by_id(portdev, 0));
1080}
1081
Amit Shah22a29ea2010-02-12 10:32:17 +05301082static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
Amit Shah17634ba2009-12-21 21:03:25 +05301083{
1084 struct port_buffer *buf;
Amit Shah335a64a5c2010-02-24 10:37:44 +05301085 unsigned int nr_added_bufs;
1086 int ret;
Amit Shah17634ba2009-12-21 21:03:25 +05301087
Amit Shah335a64a5c2010-02-24 10:37:44 +05301088 nr_added_bufs = 0;
Amit Shah17634ba2009-12-21 21:03:25 +05301089 do {
1090 buf = alloc_buf(PAGE_SIZE);
1091 if (!buf)
1092 break;
1093
1094 spin_lock_irq(lock);
Amit Shah335a64a5c2010-02-24 10:37:44 +05301095 ret = add_inbuf(vq, buf);
1096 if (ret < 0) {
Amit Shah17634ba2009-12-21 21:03:25 +05301097 spin_unlock_irq(lock);
1098 free_buf(buf);
1099 break;
1100 }
Amit Shah335a64a5c2010-02-24 10:37:44 +05301101 nr_added_bufs++;
Amit Shah17634ba2009-12-21 21:03:25 +05301102 spin_unlock_irq(lock);
Amit Shah335a64a5c2010-02-24 10:37:44 +05301103 } while (ret > 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301104
Amit Shah335a64a5c2010-02-24 10:37:44 +05301105 return nr_added_bufs;
Amit Shah17634ba2009-12-21 21:03:25 +05301106}
1107
1108static int add_port(struct ports_device *portdev, u32 id)
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301109{
Amit Shahd99393e2009-12-21 22:36:21 +05301110 char debugfs_name[16];
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301111 struct port *port;
Amit Shahd6933562010-02-12 10:32:18 +05301112 struct port_buffer *buf;
Amit Shahfb08bd22009-12-21 21:36:04 +05301113 dev_t devt;
Amit Shah335a64a5c2010-02-24 10:37:44 +05301114 unsigned int nr_added_bufs;
Rusty Russell31610432007-10-22 11:03:39 +10001115 int err;
Rusty Russell31610432007-10-22 11:03:39 +10001116
Amit Shah1c85bf32010-01-18 19:15:07 +05301117 port = kmalloc(sizeof(*port), GFP_KERNEL);
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301118 if (!port) {
1119 err = -ENOMEM;
1120 goto fail;
Amit Shahf5508042010-01-18 19:14:59 +05301121 }
Rusty Russell739544882010-01-18 19:15:04 +05301122
Amit Shah1c85bf32010-01-18 19:15:07 +05301123 port->portdev = portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301124 port->id = id;
Amit Shah203baab2010-01-18 19:15:12 +05301125
Amit Shah431edb82009-12-21 21:57:40 +05301126 port->name = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301127 port->inbuf = NULL;
Amit Shah17634ba2009-12-21 21:03:25 +05301128 port->cons.hvc = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301129
Amit Shah3c7969c2009-11-26 11:25:38 +05301130 port->host_connected = port->guest_connected = false;
Amit Shah2030fa42009-12-21 21:49:30 +05301131
Amit Shah17634ba2009-12-21 21:03:25 +05301132 port->in_vq = portdev->in_vqs[port->id];
1133 port->out_vq = portdev->out_vqs[port->id];
Rusty Russell31610432007-10-22 11:03:39 +10001134
Amit Shah2030fa42009-12-21 21:49:30 +05301135 cdev_init(&port->cdev, &port_fops);
Amit Shahfb08bd22009-12-21 21:36:04 +05301136
1137 devt = MKDEV(portdev->chr_major, id);
1138 err = cdev_add(&port->cdev, devt, 1);
1139 if (err < 0) {
1140 dev_err(&port->portdev->vdev->dev,
1141 "Error %d adding cdev for port %u\n", err, id);
1142 goto free_port;
1143 }
1144 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1145 devt, port, "vport%up%u",
1146 port->portdev->drv_index, id);
1147 if (IS_ERR(port->dev)) {
1148 err = PTR_ERR(port->dev);
1149 dev_err(&port->portdev->vdev->dev,
1150 "Error %d creating device for port %u\n",
1151 err, id);
1152 goto free_cdev;
1153 }
1154
Amit Shah203baab2010-01-18 19:15:12 +05301155 spin_lock_init(&port->inbuf_lock);
Amit Shah2030fa42009-12-21 21:49:30 +05301156 init_waitqueue_head(&port->waitqueue);
Amit Shah203baab2010-01-18 19:15:12 +05301157
Amit Shahd6933562010-02-12 10:32:18 +05301158 /* Fill the in_vq with buffers so the host can send us data. */
Amit Shah335a64a5c2010-02-24 10:37:44 +05301159 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1160 if (!nr_added_bufs) {
Amit Shahd6933562010-02-12 10:32:18 +05301161 dev_err(port->dev, "Error allocating inbufs\n");
Amit Shah1c85bf32010-01-18 19:15:07 +05301162 err = -ENOMEM;
Amit Shahfb08bd22009-12-21 21:36:04 +05301163 goto free_device;
Amit Shah1c85bf32010-01-18 19:15:07 +05301164 }
Rusty Russell31610432007-10-22 11:03:39 +10001165
Amit Shah17634ba2009-12-21 21:03:25 +05301166 /*
1167 * If we're not using multiport support, this has to be a console port
1168 */
1169 if (!use_multiport(port->portdev)) {
1170 err = init_port_console(port);
1171 if (err)
Amit Shahd6933562010-02-12 10:32:18 +05301172 goto free_inbufs;
Amit Shah17634ba2009-12-21 21:03:25 +05301173 }
1174
1175 spin_lock_irq(&portdev->ports_lock);
1176 list_add_tail(&port->list, &port->portdev->ports);
1177 spin_unlock_irq(&portdev->ports_lock);
1178
1179 /*
1180 * Tell the Host we're set so that it can send us various
1181 * configuration parameters for this port (eg, port name,
1182 * caching, whether this is a console port, etc.)
1183 */
1184 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah38edf582010-01-18 19:15:05 +05301185
Amit Shahd99393e2009-12-21 22:36:21 +05301186 if (pdrvdata.debugfs_dir) {
1187 /*
1188 * Finally, create the debugfs file that we can use to
1189 * inspect a port's state at any time
1190 */
1191 sprintf(debugfs_name, "vport%up%u",
1192 port->portdev->drv_index, id);
1193 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1194 pdrvdata.debugfs_dir,
1195 port,
1196 &port_debugfs_ops);
1197 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301198 return 0;
1199
Amit Shahd6933562010-02-12 10:32:18 +05301200free_inbufs:
1201 while ((buf = port->in_vq->vq_ops->detach_unused_buf(port->in_vq)))
1202 free_buf(buf);
Amit Shahfb08bd22009-12-21 21:36:04 +05301203free_device:
1204 device_destroy(pdrvdata.class, port->dev->devt);
1205free_cdev:
1206 cdev_del(&port->cdev);
Amit Shah1c85bf32010-01-18 19:15:07 +05301207free_port:
1208 kfree(port);
1209fail:
1210 return err;
1211}
1212
Amit Shah7f5d8102009-12-21 22:22:08 +05301213/*
1214 * The workhandler for config-space updates.
1215 *
1216 * This is called when ports are hot-added.
1217 */
1218static void config_work_handler(struct work_struct *work)
1219{
1220 struct virtio_console_config virtconconf;
1221 struct ports_device *portdev;
1222 struct virtio_device *vdev;
1223 int err;
1224
1225 portdev = container_of(work, struct ports_device, config_work);
1226
1227 vdev = portdev->vdev;
1228 vdev->config->get(vdev,
1229 offsetof(struct virtio_console_config, nr_ports),
1230 &virtconconf.nr_ports,
1231 sizeof(virtconconf.nr_ports));
1232
1233 if (portdev->config.nr_ports == virtconconf.nr_ports) {
1234 /*
1235 * Port 0 got hot-added. Since we already did all the
1236 * other initialisation for it, just tell the Host
Amit Shah1f7aa422009-12-21 22:27:31 +05301237 * that the port is ready if we find the port. In
1238 * case the port was hot-removed earlier, we call
1239 * add_port to add the port.
Amit Shah7f5d8102009-12-21 22:22:08 +05301240 */
1241 struct port *port;
1242
1243 port = find_port_by_id(portdev, 0);
Amit Shah1f7aa422009-12-21 22:27:31 +05301244 if (!port)
1245 add_port(portdev, 0);
1246 else
1247 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah7f5d8102009-12-21 22:22:08 +05301248 return;
1249 }
1250 if (virtconconf.nr_ports > portdev->config.max_nr_ports) {
1251 dev_warn(&vdev->dev,
1252 "More ports specified (%u) than allowed (%u)",
1253 portdev->config.nr_ports + 1,
1254 portdev->config.max_nr_ports);
1255 return;
1256 }
1257 if (virtconconf.nr_ports < portdev->config.nr_ports)
1258 return;
1259
1260 /* Hot-add ports */
1261 while (virtconconf.nr_ports - portdev->config.nr_ports) {
1262 err = add_port(portdev, portdev->config.nr_ports);
1263 if (err)
1264 break;
1265 portdev->config.nr_ports++;
1266 }
1267}
1268
Amit Shah2658a79a2010-01-18 19:15:11 +05301269static int init_vqs(struct ports_device *portdev)
1270{
1271 vq_callback_t **io_callbacks;
1272 char **io_names;
1273 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301274 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a79a2010-01-18 19:15:11 +05301275 int err;
1276
Amit Shah17634ba2009-12-21 21:03:25 +05301277 nr_ports = portdev->config.max_nr_ports;
1278 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301279
1280 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1281 if (!vqs) {
1282 err = -ENOMEM;
1283 goto fail;
1284 }
1285 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1286 if (!io_callbacks) {
1287 err = -ENOMEM;
1288 goto free_vqs;
1289 }
1290 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1291 if (!io_names) {
1292 err = -ENOMEM;
1293 goto free_callbacks;
1294 }
1295 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1296 GFP_KERNEL);
1297 if (!portdev->in_vqs) {
1298 err = -ENOMEM;
1299 goto free_names;
1300 }
1301 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1302 GFP_KERNEL);
1303 if (!portdev->out_vqs) {
1304 err = -ENOMEM;
1305 goto free_invqs;
1306 }
1307
Amit Shah17634ba2009-12-21 21:03:25 +05301308 /*
1309 * For backward compat (newer host but older guest), the host
1310 * spawns a console port first and also inits the vqs for port
1311 * 0 before others.
1312 */
1313 j = 0;
1314 io_callbacks[j] = in_intr;
1315 io_callbacks[j + 1] = NULL;
1316 io_names[j] = "input";
1317 io_names[j + 1] = "output";
1318 j += 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301319
Amit Shah17634ba2009-12-21 21:03:25 +05301320 if (use_multiport(portdev)) {
1321 io_callbacks[j] = control_intr;
1322 io_callbacks[j + 1] = NULL;
1323 io_names[j] = "control-i";
1324 io_names[j + 1] = "control-o";
1325
1326 for (i = 1; i < nr_ports; i++) {
1327 j += 2;
1328 io_callbacks[j] = in_intr;
1329 io_callbacks[j + 1] = NULL;
1330 io_names[j] = "input";
1331 io_names[j + 1] = "output";
1332 }
1333 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301334 /* Find the queues. */
1335 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1336 io_callbacks,
1337 (const char **)io_names);
1338 if (err)
1339 goto free_outvqs;
1340
Amit Shah17634ba2009-12-21 21:03:25 +05301341 j = 0;
Amit Shah2658a79a2010-01-18 19:15:11 +05301342 portdev->in_vqs[0] = vqs[0];
1343 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301344 j += 2;
1345 if (use_multiport(portdev)) {
1346 portdev->c_ivq = vqs[j];
1347 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a79a2010-01-18 19:15:11 +05301348
Amit Shah17634ba2009-12-21 21:03:25 +05301349 for (i = 1; i < nr_ports; i++) {
1350 j += 2;
1351 portdev->in_vqs[i] = vqs[j];
1352 portdev->out_vqs[i] = vqs[j + 1];
1353 }
1354 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301355 kfree(io_callbacks);
1356 kfree(io_names);
1357 kfree(vqs);
1358
1359 return 0;
1360
1361free_names:
1362 kfree(io_names);
1363free_callbacks:
1364 kfree(io_callbacks);
1365free_outvqs:
1366 kfree(portdev->out_vqs);
1367free_invqs:
1368 kfree(portdev->in_vqs);
1369free_vqs:
1370 kfree(vqs);
1371fail:
1372 return err;
1373}
1374
Amit Shahfb08bd22009-12-21 21:36:04 +05301375static const struct file_operations portdev_fops = {
1376 .owner = THIS_MODULE,
1377};
1378
Amit Shah1c85bf32010-01-18 19:15:07 +05301379/*
1380 * Once we're further in boot, we get probed like any other virtio
1381 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301382 *
1383 * If the host also supports multiple console ports, we check the
1384 * config space to see how many ports the host has spawned. We
1385 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301386 */
1387static int __devinit virtcons_probe(struct virtio_device *vdev)
1388{
Amit Shah1c85bf32010-01-18 19:15:07 +05301389 struct ports_device *portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301390 u32 i;
Amit Shah1c85bf32010-01-18 19:15:07 +05301391 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301392 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301393
1394 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1395 if (!portdev) {
1396 err = -ENOMEM;
1397 goto fail;
1398 }
1399
1400 /* Attach this portdev to this virtio_device, and vice-versa. */
1401 portdev->vdev = vdev;
1402 vdev->priv = portdev;
1403
Amit Shahfb08bd22009-12-21 21:36:04 +05301404 spin_lock_irq(&pdrvdata_lock);
1405 portdev->drv_index = pdrvdata.index++;
1406 spin_unlock_irq(&pdrvdata_lock);
1407
1408 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1409 &portdev_fops);
1410 if (portdev->chr_major < 0) {
1411 dev_err(&vdev->dev,
1412 "Error %d registering chrdev for device %u\n",
1413 portdev->chr_major, portdev->drv_index);
1414 err = portdev->chr_major;
1415 goto free;
1416 }
1417
Amit Shah17634ba2009-12-21 21:03:25 +05301418 multiport = false;
1419 portdev->config.nr_ports = 1;
1420 portdev->config.max_nr_ports = 1;
1421 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1422 multiport = true;
1423 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1424
1425 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1426 nr_ports),
1427 &portdev->config.nr_ports,
1428 sizeof(portdev->config.nr_ports));
1429 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1430 max_nr_ports),
1431 &portdev->config.max_nr_ports,
1432 sizeof(portdev->config.max_nr_ports));
1433 if (portdev->config.nr_ports > portdev->config.max_nr_ports) {
1434 dev_warn(&vdev->dev,
1435 "More ports (%u) specified than allowed (%u). Will init %u ports.",
1436 portdev->config.nr_ports,
1437 portdev->config.max_nr_ports,
1438 portdev->config.max_nr_ports);
1439
1440 portdev->config.nr_ports = portdev->config.max_nr_ports;
1441 }
1442 }
1443
1444 /* Let the Host know we support multiple ports.*/
1445 vdev->config->finalize_features(vdev);
1446
Amit Shah2658a79a2010-01-18 19:15:11 +05301447 err = init_vqs(portdev);
1448 if (err < 0) {
1449 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301450 goto free_chrdev;
Amit Shah2658a79a2010-01-18 19:15:11 +05301451 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301452
Amit Shah17634ba2009-12-21 21:03:25 +05301453 spin_lock_init(&portdev->ports_lock);
1454 INIT_LIST_HEAD(&portdev->ports);
1455
1456 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301457 unsigned int nr_added_bufs;
1458
Amit Shah17634ba2009-12-21 21:03:25 +05301459 spin_lock_init(&portdev->cvq_lock);
1460 INIT_WORK(&portdev->control_work, &control_work_handler);
Amit Shah7f5d8102009-12-21 22:22:08 +05301461 INIT_WORK(&portdev->config_work, &config_work_handler);
Amit Shah17634ba2009-12-21 21:03:25 +05301462
Amit Shah335a64a5c2010-02-24 10:37:44 +05301463 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1464 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301465 dev_err(&vdev->dev,
1466 "Error allocating buffers for control queue\n");
1467 err = -ENOMEM;
1468 goto free_vqs;
1469 }
Amit Shah17634ba2009-12-21 21:03:25 +05301470 }
1471
1472 for (i = 0; i < portdev->config.nr_ports; i++)
1473 add_port(portdev, i);
Amit Shah1c85bf32010-01-18 19:15:07 +05301474
Rusty Russell971f3392010-01-18 19:14:56 +05301475 /* Start using the new console output. */
1476 early_put_chars = NULL;
Rusty Russell31610432007-10-22 11:03:39 +10001477 return 0;
1478
Amit Shah22a29ea2010-02-12 10:32:17 +05301479free_vqs:
1480 vdev->config->del_vqs(vdev);
1481 kfree(portdev->in_vqs);
1482 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301483free_chrdev:
1484 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001485free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301486 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001487fail:
1488 return err;
1489}
1490
Amit Shah71778762010-02-12 10:32:16 +05301491static void virtcons_remove(struct virtio_device *vdev)
1492{
1493 struct ports_device *portdev;
1494 struct port *port, *port2;
1495 struct port_buffer *buf;
1496 unsigned int len;
1497
1498 portdev = vdev->priv;
1499
1500 cancel_work_sync(&portdev->control_work);
1501 cancel_work_sync(&portdev->config_work);
1502
1503 list_for_each_entry_safe(port, port2, &portdev->ports, list)
1504 remove_port(port);
1505
1506 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1507
1508 while ((buf = portdev->c_ivq->vq_ops->get_buf(portdev->c_ivq, &len)))
1509 free_buf(buf);
1510
1511 while ((buf = portdev->c_ivq->vq_ops->detach_unused_buf(portdev->c_ivq)))
1512 free_buf(buf);
1513
1514 vdev->config->del_vqs(vdev);
1515 kfree(portdev->in_vqs);
1516 kfree(portdev->out_vqs);
1517
1518 kfree(portdev);
1519}
1520
Rusty Russell31610432007-10-22 11:03:39 +10001521static struct virtio_device_id id_table[] = {
1522 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1523 { 0 },
1524};
1525
Christian Borntraegerc2983452008-11-25 13:36:26 +01001526static unsigned int features[] = {
1527 VIRTIO_CONSOLE_F_SIZE,
Amit Shah17634ba2009-12-21 21:03:25 +05301528 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001529};
1530
Rusty Russell31610432007-10-22 11:03:39 +10001531static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001532 .feature_table = features,
1533 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001534 .driver.name = KBUILD_MODNAME,
1535 .driver.owner = THIS_MODULE,
1536 .id_table = id_table,
1537 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301538 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301539 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001540};
1541
1542static int __init init(void)
1543{
Amit Shahfb08bd22009-12-21 21:36:04 +05301544 int err;
1545
1546 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1547 if (IS_ERR(pdrvdata.class)) {
1548 err = PTR_ERR(pdrvdata.class);
1549 pr_err("Error %d creating virtio-ports class\n", err);
1550 return err;
1551 }
Amit Shahd99393e2009-12-21 22:36:21 +05301552
1553 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1554 if (!pdrvdata.debugfs_dir) {
1555 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1556 PTR_ERR(pdrvdata.debugfs_dir));
1557 }
Amit Shah38edf582010-01-18 19:15:05 +05301558 INIT_LIST_HEAD(&pdrvdata.consoles);
1559
Rusty Russell31610432007-10-22 11:03:39 +10001560 return register_virtio_driver(&virtio_console);
1561}
Amit Shah71778762010-02-12 10:32:16 +05301562
1563static void __exit fini(void)
1564{
1565 unregister_virtio_driver(&virtio_console);
1566
1567 class_destroy(pdrvdata.class);
1568 if (pdrvdata.debugfs_dir)
1569 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1570}
Rusty Russell31610432007-10-22 11:03:39 +10001571module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301572module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001573
1574MODULE_DEVICE_TABLE(virtio, id_table);
1575MODULE_DESCRIPTION("Virtio console driver");
1576MODULE_LICENSE("GPL");