blob: 6207e372992382e93cc3941bbdfd47fa2c3c8b72 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053029#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100030#include <linux/virtio.h>
31#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053032#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053033#include <linux/workqueue.h>
Rusty Russell31610432007-10-22 11:03:39 +100034#include "hvc_console.h"
35
Amit Shah38edf582010-01-18 19:15:05 +053036/*
37 * This is a global struct for storing common data for all the devices
38 * this driver handles.
39 *
40 * Mainly, it has a linked list for all the consoles in one place so
41 * that callbacks from hvc for get_chars(), put_chars() work properly
42 * across multiple devices and multiple ports per device.
43 */
44struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053045 /* Used for registering chardevs */
46 struct class *class;
47
Amit Shahd99393e2009-12-21 22:36:21 +053048 /* Used for exporting per-port information to debugfs */
49 struct dentry *debugfs_dir;
50
Amit Shahfb08bd22009-12-21 21:36:04 +053051 /* Number of devices this driver is handling */
52 unsigned int index;
53
Rusty Russelld8a02bd2010-01-18 19:15:06 +053054 /*
55 * This is used to keep track of the number of hvc consoles
56 * spawned by this driver. This number is given as the first
57 * argument to hvc_alloc(). To correctly map an initial
58 * console spawned via hvc_instantiate to the console being
59 * hooked up via hvc_alloc, we need to pass the same vtermno.
60 *
61 * We also just assume the first console being initialised was
62 * the first one that got used as the initial console.
63 */
64 unsigned int next_vtermno;
65
Amit Shah38edf582010-01-18 19:15:05 +053066 /* All the console devices handled by this driver */
67 struct list_head consoles;
68};
69static struct ports_driver_data pdrvdata;
70
71DEFINE_SPINLOCK(pdrvdata_lock);
72
Amit Shah4f23c572010-01-18 19:15:09 +053073/* This struct holds information that's relevant only for console ports */
74struct console {
75 /* We'll place all consoles in a list in the pdrvdata struct */
76 struct list_head list;
77
78 /* The hvc device associated with this console port */
79 struct hvc_struct *hvc;
80
81 /*
82 * This number identifies the number that we used to register
83 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
84 * number passed on by the hvc callbacks to us to
85 * differentiate between the other console ports handled by
86 * this driver
87 */
88 u32 vtermno;
89};
90
Amit Shahfdb9a052010-01-18 19:15:01 +053091struct port_buffer {
92 char *buf;
93
94 /* size of the buffer in *buf above */
95 size_t size;
96
97 /* used length of the buffer */
98 size_t len;
99 /* offset in the buf from which to consume data */
100 size_t offset;
101};
102
Amit Shah17634ba2009-12-21 21:03:25 +0530103/*
104 * This is a per-device struct that stores data common to all the
105 * ports for that device (vdev->priv).
106 */
107struct ports_device {
108 /*
109 * Workqueue handlers where we process deferred work after
110 * notification
111 */
112 struct work_struct control_work;
113
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 */
Amit Shahb99fa812010-05-19 22:15:46 -0600123 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530124
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;
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300301 buf = virtqueue_get_buf(vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530302 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
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300322 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
323 virtqueue_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
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300339 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530340
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 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300347 buf = virtqueue_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 Shah3425e702010-05-19 22:15:46 -0600376static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
377 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530378{
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
Amit Shah3425e702010-05-19 22:15:46 -0600384 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530385 return 0;
386
Amit Shah3425e702010-05-19 22:15:46 -0600387 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530388 cpkt.event = event;
389 cpkt.value = value;
390
Amit Shah3425e702010-05-19 22:15:46 -0600391 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530392
393 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300394 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
395 virtqueue_kick(vq);
396 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530397 cpu_relax();
398 }
399 return 0;
400}
401
Amit Shah3425e702010-05-19 22:15:46 -0600402static ssize_t send_control_msg(struct port *port, unsigned int event,
403 unsigned int value)
404{
405 return __send_control_msg(port->portdev, port->id, event, value);
406}
407
Amit Shahf997f00b2009-12-21 17:28:51 +0530408static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
409{
410 struct scatterlist sg[1];
411 struct virtqueue *out_vq;
412 ssize_t ret;
413 unsigned int len;
414
415 out_vq = port->out_vq;
416
417 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300418 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530419
420 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300421 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530422
423 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600424 in_count = 0;
Amit Shahf997f00b2009-12-21 17:28:51 +0530425 goto fail;
426 }
427
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600428 /* Wait till the host acknowledges it pushed out the data we sent. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300429 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530430 cpu_relax();
431fail:
432 /* We're expected to return the amount of data we wrote */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600433 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530434}
435
Amit Shah203baab2010-01-18 19:15:12 +0530436/*
437 * Give out the data that's requested from the buffer that we have
438 * queued up.
439 */
Amit Shahb766cee2009-12-21 21:26:45 +0530440static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
441 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530442{
443 struct port_buffer *buf;
444 unsigned long flags;
445
446 if (!out_count || !port_has_data(port))
447 return 0;
448
449 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530450 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530451
Amit Shahb766cee2009-12-21 21:26:45 +0530452 if (to_user) {
453 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530454
Amit Shahb766cee2009-12-21 21:26:45 +0530455 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
456 if (ret)
457 return -EFAULT;
458 } else {
459 memcpy(out_buf, buf->buf + buf->offset, out_count);
460 }
461
Amit Shah203baab2010-01-18 19:15:12 +0530462 buf->offset += out_count;
463
464 if (buf->offset == buf->len) {
465 /*
466 * We're done using all the data in this buffer.
467 * Re-queue so that the Host can send us more data.
468 */
469 spin_lock_irqsave(&port->inbuf_lock, flags);
470 port->inbuf = NULL;
471
472 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530473 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530474
475 spin_unlock_irqrestore(&port->inbuf_lock, flags);
476 }
Amit Shahb766cee2009-12-21 21:26:45 +0530477 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530478 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530479}
480
Amit Shah2030fa42009-12-21 21:49:30 +0530481/* The condition that must be true for polling to end */
482static bool wait_is_over(struct port *port)
483{
484 return port_has_data(port) || !port->host_connected;
485}
486
487static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
488 size_t count, loff_t *offp)
489{
490 struct port *port;
491 ssize_t ret;
492
493 port = filp->private_data;
494
495 if (!port_has_data(port)) {
496 /*
497 * If nothing's connected on the host just return 0 in
498 * case of list_empty; this tells the userspace app
499 * that there's no connection
500 */
501 if (!port->host_connected)
502 return 0;
503 if (filp->f_flags & O_NONBLOCK)
504 return -EAGAIN;
505
506 ret = wait_event_interruptible(port->waitqueue,
507 wait_is_over(port));
508 if (ret < 0)
509 return ret;
510 }
511 /*
512 * We could've received a disconnection message while we were
513 * waiting for more data.
514 *
515 * This check is not clubbed in the if() statement above as we
516 * might receive some data as well as the host could get
517 * disconnected after we got woken up from our wait. So we
518 * really want to give off whatever data we have and only then
519 * check for host_connected.
520 */
521 if (!port_has_data(port) && !port->host_connected)
522 return 0;
523
524 return fill_readbuf(port, ubuf, count, true);
525}
526
527static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
528 size_t count, loff_t *offp)
529{
530 struct port *port;
531 char *buf;
532 ssize_t ret;
533
534 port = filp->private_data;
535
536 count = min((size_t)(32 * 1024), count);
537
538 buf = kmalloc(count, GFP_KERNEL);
539 if (!buf)
540 return -ENOMEM;
541
542 ret = copy_from_user(buf, ubuf, count);
543 if (ret) {
544 ret = -EFAULT;
545 goto free_buf;
546 }
547
548 ret = send_buf(port, buf, count);
549free_buf:
550 kfree(buf);
551 return ret;
552}
553
554static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
555{
556 struct port *port;
557 unsigned int ret;
558
559 port = filp->private_data;
560 poll_wait(filp, &port->waitqueue, wait);
561
562 ret = 0;
563 if (port->inbuf)
564 ret |= POLLIN | POLLRDNORM;
565 if (port->host_connected)
566 ret |= POLLOUT;
567 if (!port->host_connected)
568 ret |= POLLHUP;
569
570 return ret;
571}
572
573static int port_fops_release(struct inode *inode, struct file *filp)
574{
575 struct port *port;
576
577 port = filp->private_data;
578
579 /* Notify host of port being closed */
580 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
581
Amit Shah88f251a2009-12-21 22:15:30 +0530582 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530583 port->guest_connected = false;
584
Amit Shah88f251a2009-12-21 22:15:30 +0530585 discard_port_data(port);
586
587 spin_unlock_irq(&port->inbuf_lock);
588
Amit Shah2030fa42009-12-21 21:49:30 +0530589 return 0;
590}
591
592static int port_fops_open(struct inode *inode, struct file *filp)
593{
594 struct cdev *cdev = inode->i_cdev;
595 struct port *port;
596
597 port = container_of(cdev, struct port, cdev);
598 filp->private_data = port;
599
600 /*
601 * Don't allow opening of console port devices -- that's done
602 * via /dev/hvc
603 */
604 if (is_console_port(port))
605 return -ENXIO;
606
Amit Shah3c7969c2009-11-26 11:25:38 +0530607 /* Allow only one process to open a particular port at a time */
608 spin_lock_irq(&port->inbuf_lock);
609 if (port->guest_connected) {
610 spin_unlock_irq(&port->inbuf_lock);
611 return -EMFILE;
612 }
613
614 port->guest_connected = true;
615 spin_unlock_irq(&port->inbuf_lock);
616
Amit Shah2030fa42009-12-21 21:49:30 +0530617 /* Notify host of port being opened */
618 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
619
620 return 0;
621}
622
623/*
624 * The file operations that we support: programs in the guest can open
625 * a console device, read from it, write to it, poll for data and
626 * close it. The devices are at
627 * /dev/vport<device number>p<port number>
628 */
629static const struct file_operations port_fops = {
630 .owner = THIS_MODULE,
631 .open = port_fops_open,
632 .read = port_fops_read,
633 .write = port_fops_write,
634 .poll = port_fops_poll,
635 .release = port_fops_release,
636};
637
Amit Shahe27b5192010-01-18 19:15:02 +0530638/*
Rusty Russella23ea922010-01-18 19:14:55 +0530639 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000640 *
Rusty Russella23ea922010-01-18 19:14:55 +0530641 * We turn the characters into a scatter-gather list, add it to the
642 * output queue and then kick the Host. Then we sit here waiting for
643 * it to finish: inefficient in theory, but in practice
644 * implementations will do it immediately (lguest's Launcher does).
645 */
Rusty Russell31610432007-10-22 11:03:39 +1000646static int put_chars(u32 vtermno, const char *buf, int count)
647{
Rusty Russell21206ed2010-01-18 19:15:00 +0530648 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530649
François Diakhaté162a6892010-03-23 18:23:15 +0530650 if (unlikely(early_put_chars))
651 return early_put_chars(vtermno, buf, count);
652
Amit Shah38edf582010-01-18 19:15:05 +0530653 port = find_port_by_vtermno(vtermno);
654 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600655 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000656
Amit Shahf997f00b2009-12-21 17:28:51 +0530657 return send_buf(port, (void *)buf, count);
Rusty Russell31610432007-10-22 11:03:39 +1000658}
659
Rusty Russella23ea922010-01-18 19:14:55 +0530660/*
Rusty Russella23ea922010-01-18 19:14:55 +0530661 * get_chars() is the callback from the hvc_console infrastructure
662 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000663 *
Amit Shah203baab2010-01-18 19:15:12 +0530664 * We call out to fill_readbuf that gets us the required data from the
665 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530666 */
Rusty Russell31610432007-10-22 11:03:39 +1000667static int get_chars(u32 vtermno, char *buf, int count)
668{
Rusty Russell21206ed2010-01-18 19:15:00 +0530669 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000670
Amit Shah6dc69f972010-05-19 22:15:47 -0600671 /* If we've not set up the port yet, we have no input to give. */
672 if (unlikely(early_put_chars))
673 return 0;
674
Amit Shah38edf582010-01-18 19:15:05 +0530675 port = find_port_by_vtermno(vtermno);
676 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600677 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530678
679 /* If we don't have an input queue yet, we can't get input. */
680 BUG_ON(!port->in_vq);
681
Amit Shahb766cee2009-12-21 21:26:45 +0530682 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000683}
Rusty Russell31610432007-10-22 11:03:39 +1000684
Amit Shahcb06e362010-01-18 19:15:08 +0530685static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100686{
Amit Shahcb06e362010-01-18 19:15:08 +0530687 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100688 struct winsize ws;
689
Amit Shah2de16a42010-03-19 17:36:44 +0530690 /* The port could have been hot-unplugged */
691 if (!port)
692 return;
693
Amit Shahcb06e362010-01-18 19:15:08 +0530694 vdev = port->portdev->vdev;
695 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
696 vdev->config->get(vdev,
697 offsetof(struct virtio_console_config, cols),
698 &ws.ws_col, sizeof(u16));
699 vdev->config->get(vdev,
700 offsetof(struct virtio_console_config, rows),
701 &ws.ws_row, sizeof(u16));
Amit Shah4f23c572010-01-18 19:15:09 +0530702 hvc_resize(port->cons.hvc, ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100703 }
704}
705
Amit Shah38edf582010-01-18 19:15:05 +0530706/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200707static int notifier_add_vio(struct hvc_struct *hp, int data)
708{
Amit Shah38edf582010-01-18 19:15:05 +0530709 struct port *port;
710
711 port = find_port_by_vtermno(hp->vtermno);
712 if (!port)
713 return -EINVAL;
714
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200715 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530716 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100717
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200718 return 0;
719}
720
721static void notifier_del_vio(struct hvc_struct *hp, int data)
722{
723 hp->irq_requested = 0;
724}
725
Amit Shah17634ba2009-12-21 21:03:25 +0530726/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530727static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530728 .get_chars = get_chars,
729 .put_chars = put_chars,
730 .notifier_add = notifier_add_vio,
731 .notifier_del = notifier_del_vio,
732 .notifier_hangup = notifier_del_vio,
733};
734
735/*
736 * Console drivers are initialized very early so boot messages can go
737 * out, so we do things slightly differently from the generic virtio
738 * initialization of the net and block drivers.
739 *
740 * At this stage, the console is output-only. It's too early to set
741 * up a virtqueue, so we let the drivers do some boutique early-output
742 * thing.
743 */
744int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
745{
746 early_put_chars = put_chars;
747 return hvc_instantiate(0, 0, &hv_ops);
748}
749
Amit Shah17634ba2009-12-21 21:03:25 +0530750int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530751{
752 int ret;
753
754 /*
755 * The Host's telling us this port is a console port. Hook it
756 * up with an hvc console.
757 *
758 * To set up and manage our virtual console, we call
759 * hvc_alloc().
760 *
761 * The first argument of hvc_alloc() is the virtual console
762 * number. The second argument is the parameter for the
763 * notification mechanism (like irq number). We currently
764 * leave this as zero, virtqueues have implicit notifications.
765 *
766 * The third argument is a "struct hv_ops" containing the
767 * put_chars() get_chars(), notifier_add() and notifier_del()
768 * pointers. The final argument is the output buffer size: we
769 * can do any size, so we put PAGE_SIZE here.
770 */
771 port->cons.vtermno = pdrvdata.next_vtermno;
772
773 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
774 if (IS_ERR(port->cons.hvc)) {
775 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530776 dev_err(port->dev,
777 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530778 port->cons.hvc = NULL;
779 return ret;
780 }
781 spin_lock_irq(&pdrvdata_lock);
782 pdrvdata.next_vtermno++;
783 list_add_tail(&port->cons.list, &pdrvdata.consoles);
784 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530785 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530786
Amit Shah1d051602010-05-19 22:15:49 -0600787 /*
788 * Start using the new console output if this is the first
789 * console to come up.
790 */
791 if (early_put_chars)
792 early_put_chars = NULL;
793
Amit Shah2030fa42009-12-21 21:49:30 +0530794 /* Notify host of port being opened */
795 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
796
Amit Shahcfa6d372010-01-18 19:15:10 +0530797 return 0;
798}
799
Amit Shah431edb82009-12-21 21:57:40 +0530800static ssize_t show_port_name(struct device *dev,
801 struct device_attribute *attr, char *buffer)
802{
803 struct port *port;
804
805 port = dev_get_drvdata(dev);
806
807 return sprintf(buffer, "%s\n", port->name);
808}
809
810static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
811
812static struct attribute *port_sysfs_entries[] = {
813 &dev_attr_name.attr,
814 NULL
815};
816
817static struct attribute_group port_attribute_group = {
818 .name = NULL, /* put in device directory */
819 .attrs = port_sysfs_entries,
820};
821
Amit Shahd99393e2009-12-21 22:36:21 +0530822static int debugfs_open(struct inode *inode, struct file *filp)
823{
824 filp->private_data = inode->i_private;
825 return 0;
826}
827
828static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
829 size_t count, loff_t *offp)
830{
831 struct port *port;
832 char *buf;
833 ssize_t ret, out_offset, out_count;
834
835 out_count = 1024;
836 buf = kmalloc(out_count, GFP_KERNEL);
837 if (!buf)
838 return -ENOMEM;
839
840 port = filp->private_data;
841 out_offset = 0;
842 out_offset += snprintf(buf + out_offset, out_count,
843 "name: %s\n", port->name ? port->name : "");
844 out_offset += snprintf(buf + out_offset, out_count - out_offset,
845 "guest_connected: %d\n", port->guest_connected);
846 out_offset += snprintf(buf + out_offset, out_count - out_offset,
847 "host_connected: %d\n", port->host_connected);
848 out_offset += snprintf(buf + out_offset, out_count - out_offset,
849 "is_console: %s\n",
850 is_console_port(port) ? "yes" : "no");
851 out_offset += snprintf(buf + out_offset, out_count - out_offset,
852 "console_vtermno: %u\n", port->cons.vtermno);
853
854 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
855 kfree(buf);
856 return ret;
857}
858
859static const struct file_operations port_debugfs_ops = {
860 .owner = THIS_MODULE,
861 .open = debugfs_open,
862 .read = debugfs_read,
863};
864
Amit Shahc446f8f2010-05-19 22:15:48 -0600865static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
866{
867 struct port_buffer *buf;
868 unsigned int nr_added_bufs;
869 int ret;
870
871 nr_added_bufs = 0;
872 do {
873 buf = alloc_buf(PAGE_SIZE);
874 if (!buf)
875 break;
876
877 spin_lock_irq(lock);
878 ret = add_inbuf(vq, buf);
879 if (ret < 0) {
880 spin_unlock_irq(lock);
881 free_buf(buf);
882 break;
883 }
884 nr_added_bufs++;
885 spin_unlock_irq(lock);
886 } while (ret > 0);
887
888 return nr_added_bufs;
889}
890
891static int add_port(struct ports_device *portdev, u32 id)
892{
893 char debugfs_name[16];
894 struct port *port;
895 struct port_buffer *buf;
896 dev_t devt;
897 unsigned int nr_added_bufs;
898 int err;
899
900 port = kmalloc(sizeof(*port), GFP_KERNEL);
901 if (!port) {
902 err = -ENOMEM;
903 goto fail;
904 }
905
906 port->portdev = portdev;
907 port->id = id;
908
909 port->name = NULL;
910 port->inbuf = NULL;
911 port->cons.hvc = NULL;
912
913 port->host_connected = port->guest_connected = false;
914
915 port->in_vq = portdev->in_vqs[port->id];
916 port->out_vq = portdev->out_vqs[port->id];
917
918 cdev_init(&port->cdev, &port_fops);
919
920 devt = MKDEV(portdev->chr_major, id);
921 err = cdev_add(&port->cdev, devt, 1);
922 if (err < 0) {
923 dev_err(&port->portdev->vdev->dev,
924 "Error %d adding cdev for port %u\n", err, id);
925 goto free_port;
926 }
927 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
928 devt, port, "vport%up%u",
929 port->portdev->drv_index, id);
930 if (IS_ERR(port->dev)) {
931 err = PTR_ERR(port->dev);
932 dev_err(&port->portdev->vdev->dev,
933 "Error %d creating device for port %u\n",
934 err, id);
935 goto free_cdev;
936 }
937
938 spin_lock_init(&port->inbuf_lock);
939 init_waitqueue_head(&port->waitqueue);
940
941 /* Fill the in_vq with buffers so the host can send us data. */
942 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
943 if (!nr_added_bufs) {
944 dev_err(port->dev, "Error allocating inbufs\n");
945 err = -ENOMEM;
946 goto free_device;
947 }
948
949 /*
950 * If we're not using multiport support, this has to be a console port
951 */
952 if (!use_multiport(port->portdev)) {
953 err = init_port_console(port);
954 if (err)
955 goto free_inbufs;
956 }
957
958 spin_lock_irq(&portdev->ports_lock);
959 list_add_tail(&port->list, &port->portdev->ports);
960 spin_unlock_irq(&portdev->ports_lock);
961
962 /*
963 * Tell the Host we're set so that it can send us various
964 * configuration parameters for this port (eg, port name,
965 * caching, whether this is a console port, etc.)
966 */
967 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
968
969 if (pdrvdata.debugfs_dir) {
970 /*
971 * Finally, create the debugfs file that we can use to
972 * inspect a port's state at any time
973 */
974 sprintf(debugfs_name, "vport%up%u",
975 port->portdev->drv_index, id);
976 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
977 pdrvdata.debugfs_dir,
978 port,
979 &port_debugfs_ops);
980 }
981 return 0;
982
983free_inbufs:
984 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
985 free_buf(buf);
986free_device:
987 device_destroy(pdrvdata.class, port->dev->devt);
988free_cdev:
989 cdev_del(&port->cdev);
990free_port:
991 kfree(port);
992fail:
993 /* The host might want to notify management sw about port add failure */
994 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 0);
995 return err;
996}
997
Amit Shah1f7aa422009-12-21 22:27:31 +0530998/* Remove all port-specific data. */
999static int remove_port(struct port *port)
1000{
Amit Shaha9cdd482010-02-12 10:32:15 +05301001 struct port_buffer *buf;
1002
Amit Shah1f7aa422009-12-21 22:27:31 +05301003 spin_lock_irq(&port->portdev->ports_lock);
1004 list_del(&port->list);
1005 spin_unlock_irq(&port->portdev->ports_lock);
1006
1007 if (is_console_port(port)) {
1008 spin_lock_irq(&pdrvdata_lock);
1009 list_del(&port->cons.list);
1010 spin_unlock_irq(&pdrvdata_lock);
Amit Shah69eb9a92010-05-19 22:15:47 -06001011#if 0
1012 /*
1013 * hvc_remove() not called as removing one hvc port
1014 * results in other hvc ports getting frozen.
1015 *
1016 * Once this is resolved in hvc, this functionality
1017 * will be enabled. Till that is done, the -EPIPE
1018 * return from get_chars() above will help
1019 * hvc_console.c to clean up on ports we remove here.
1020 */
Amit Shah1f7aa422009-12-21 22:27:31 +05301021 hvc_remove(port->cons.hvc);
Amit Shah69eb9a92010-05-19 22:15:47 -06001022#endif
Amit Shah1f7aa422009-12-21 22:27:31 +05301023 }
1024 if (port->guest_connected)
1025 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
1026
Amit Shah1f7aa422009-12-21 22:27:31 +05301027 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1028 device_destroy(pdrvdata.class, port->dev->devt);
1029 cdev_del(&port->cdev);
1030
Amit Shaha9cdd482010-02-12 10:32:15 +05301031 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +05301032 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301033
1034 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001035 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +05301036 free_buf(buf);
1037
Amit Shah1f7aa422009-12-21 22:27:31 +05301038 kfree(port->name);
1039
Amit Shahd99393e2009-12-21 22:36:21 +05301040 debugfs_remove(port->debugfs_file);
1041
Amit Shah1f7aa422009-12-21 22:27:31 +05301042 kfree(port);
1043 return 0;
1044}
1045
Amit Shah17634ba2009-12-21 21:03:25 +05301046/* Any private messages that the Host and Guest want to share */
1047static void handle_control_message(struct ports_device *portdev,
1048 struct port_buffer *buf)
1049{
1050 struct virtio_console_control *cpkt;
1051 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301052 size_t name_size;
1053 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301054
1055 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1056
1057 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001058 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301059 /* No valid header at start of buffer. Drop it. */
1060 dev_dbg(&portdev->vdev->dev,
1061 "Invalid index %u in control packet\n", cpkt->id);
1062 return;
1063 }
1064
1065 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001066 case VIRTIO_CONSOLE_PORT_ADD:
1067 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001068 dev_dbg(&portdev->vdev->dev,
1069 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001070 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1071 break;
1072 }
1073 if (cpkt->id >= portdev->config.max_nr_ports) {
1074 dev_warn(&portdev->vdev->dev,
1075 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1076 cpkt->id, portdev->config.max_nr_ports - 1);
1077 break;
1078 }
1079 add_port(portdev, cpkt->id);
1080 break;
1081 case VIRTIO_CONSOLE_PORT_REMOVE:
1082 remove_port(port);
1083 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301084 case VIRTIO_CONSOLE_CONSOLE_PORT:
1085 if (!cpkt->value)
1086 break;
1087 if (is_console_port(port))
1088 break;
1089
1090 init_port_console(port);
1091 /*
1092 * Could remove the port here in case init fails - but
1093 * have to notify the host first.
1094 */
1095 break;
1096 case VIRTIO_CONSOLE_RESIZE:
1097 if (!is_console_port(port))
1098 break;
1099 port->cons.hvc->irq_requested = 1;
1100 resize_console(port);
1101 break;
Amit Shah2030fa42009-12-21 21:49:30 +05301102 case VIRTIO_CONSOLE_PORT_OPEN:
1103 port->host_connected = cpkt->value;
1104 wake_up_interruptible(&port->waitqueue);
1105 break;
Amit Shah431edb82009-12-21 21:57:40 +05301106 case VIRTIO_CONSOLE_PORT_NAME:
1107 /*
1108 * Skip the size of the header and the cpkt to get the size
1109 * of the name that was sent
1110 */
1111 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1112
1113 port->name = kmalloc(name_size, GFP_KERNEL);
1114 if (!port->name) {
1115 dev_err(port->dev,
1116 "Not enough space to store port name\n");
1117 break;
1118 }
1119 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1120 name_size - 1);
1121 port->name[name_size - 1] = 0;
1122
1123 /*
1124 * Since we only have one sysfs attribute, 'name',
1125 * create it only if we have a name for the port.
1126 */
1127 err = sysfs_create_group(&port->dev->kobj,
1128 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301129 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301130 dev_err(port->dev,
1131 "Error %d creating sysfs device attributes\n",
1132 err);
Amit Shahec642132010-03-19 17:36:43 +05301133 } else {
1134 /*
1135 * Generate a udev event so that appropriate
1136 * symlinks can be created based on udev
1137 * rules.
1138 */
1139 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1140 }
Amit Shah431edb82009-12-21 21:57:40 +05301141 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301142 }
1143}
1144
1145static void control_work_handler(struct work_struct *work)
1146{
1147 struct ports_device *portdev;
1148 struct virtqueue *vq;
1149 struct port_buffer *buf;
1150 unsigned int len;
1151
1152 portdev = container_of(work, struct ports_device, control_work);
1153 vq = portdev->c_ivq;
1154
1155 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001156 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301157 spin_unlock(&portdev->cvq_lock);
1158
1159 buf->len = len;
1160 buf->offset = 0;
1161
1162 handle_control_message(portdev, buf);
1163
1164 spin_lock(&portdev->cvq_lock);
1165 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1166 dev_warn(&portdev->vdev->dev,
1167 "Error adding buffer to queue\n");
1168 free_buf(buf);
1169 }
1170 }
1171 spin_unlock(&portdev->cvq_lock);
1172}
1173
1174static void in_intr(struct virtqueue *vq)
1175{
1176 struct port *port;
1177 unsigned long flags;
1178
1179 port = find_port_by_vq(vq->vdev->priv, vq);
1180 if (!port)
1181 return;
1182
1183 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301184 if (!port->inbuf)
1185 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301186
Amit Shah88f251a2009-12-21 22:15:30 +05301187 /*
1188 * Don't queue up data when port is closed. This condition
1189 * can be reached when a console port is not yet connected (no
1190 * tty is spawned) and the host sends out data to console
1191 * ports. For generic serial ports, the host won't
1192 * (shouldn't) send data till the guest is connected.
1193 */
1194 if (!port->guest_connected)
1195 discard_port_data(port);
1196
Amit Shah17634ba2009-12-21 21:03:25 +05301197 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1198
Amit Shah2030fa42009-12-21 21:49:30 +05301199 wake_up_interruptible(&port->waitqueue);
1200
Amit Shah17634ba2009-12-21 21:03:25 +05301201 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1202 hvc_kick();
1203}
1204
1205static void control_intr(struct virtqueue *vq)
1206{
1207 struct ports_device *portdev;
1208
1209 portdev = vq->vdev->priv;
1210 schedule_work(&portdev->control_work);
1211}
1212
Amit Shah7f5d8102009-12-21 22:22:08 +05301213static void config_intr(struct virtio_device *vdev)
1214{
1215 struct ports_device *portdev;
1216
1217 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001218
Amit Shah7f5d8102009-12-21 22:22:08 +05301219 /*
1220 * We'll use this way of resizing only for legacy support.
1221 * For newer userspace (VIRTIO_CONSOLE_F_MULTPORT+), use
1222 * control messages to indicate console size changes so that
1223 * it can be done per-port
1224 */
1225 resize_console(find_port_by_id(portdev, 0));
1226}
1227
Amit Shah2658a792010-01-18 19:15:11 +05301228static int init_vqs(struct ports_device *portdev)
1229{
1230 vq_callback_t **io_callbacks;
1231 char **io_names;
1232 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301233 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301234 int err;
1235
Amit Shah17634ba2009-12-21 21:03:25 +05301236 nr_ports = portdev->config.max_nr_ports;
1237 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301238
1239 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1240 if (!vqs) {
1241 err = -ENOMEM;
1242 goto fail;
1243 }
1244 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1245 if (!io_callbacks) {
1246 err = -ENOMEM;
1247 goto free_vqs;
1248 }
1249 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1250 if (!io_names) {
1251 err = -ENOMEM;
1252 goto free_callbacks;
1253 }
1254 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1255 GFP_KERNEL);
1256 if (!portdev->in_vqs) {
1257 err = -ENOMEM;
1258 goto free_names;
1259 }
1260 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1261 GFP_KERNEL);
1262 if (!portdev->out_vqs) {
1263 err = -ENOMEM;
1264 goto free_invqs;
1265 }
1266
Amit Shah17634ba2009-12-21 21:03:25 +05301267 /*
1268 * For backward compat (newer host but older guest), the host
1269 * spawns a console port first and also inits the vqs for port
1270 * 0 before others.
1271 */
1272 j = 0;
1273 io_callbacks[j] = in_intr;
1274 io_callbacks[j + 1] = NULL;
1275 io_names[j] = "input";
1276 io_names[j + 1] = "output";
1277 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301278
Amit Shah17634ba2009-12-21 21:03:25 +05301279 if (use_multiport(portdev)) {
1280 io_callbacks[j] = control_intr;
1281 io_callbacks[j + 1] = NULL;
1282 io_names[j] = "control-i";
1283 io_names[j + 1] = "control-o";
1284
1285 for (i = 1; i < nr_ports; i++) {
1286 j += 2;
1287 io_callbacks[j] = in_intr;
1288 io_callbacks[j + 1] = NULL;
1289 io_names[j] = "input";
1290 io_names[j + 1] = "output";
1291 }
1292 }
Amit Shah2658a792010-01-18 19:15:11 +05301293 /* Find the queues. */
1294 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1295 io_callbacks,
1296 (const char **)io_names);
1297 if (err)
1298 goto free_outvqs;
1299
Amit Shah17634ba2009-12-21 21:03:25 +05301300 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301301 portdev->in_vqs[0] = vqs[0];
1302 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301303 j += 2;
1304 if (use_multiport(portdev)) {
1305 portdev->c_ivq = vqs[j];
1306 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301307
Amit Shah17634ba2009-12-21 21:03:25 +05301308 for (i = 1; i < nr_ports; i++) {
1309 j += 2;
1310 portdev->in_vqs[i] = vqs[j];
1311 portdev->out_vqs[i] = vqs[j + 1];
1312 }
1313 }
Amit Shah2658a792010-01-18 19:15:11 +05301314 kfree(io_callbacks);
1315 kfree(io_names);
1316 kfree(vqs);
1317
1318 return 0;
1319
1320free_names:
1321 kfree(io_names);
1322free_callbacks:
1323 kfree(io_callbacks);
1324free_outvqs:
1325 kfree(portdev->out_vqs);
1326free_invqs:
1327 kfree(portdev->in_vqs);
1328free_vqs:
1329 kfree(vqs);
1330fail:
1331 return err;
1332}
1333
Amit Shahfb08bd22009-12-21 21:36:04 +05301334static const struct file_operations portdev_fops = {
1335 .owner = THIS_MODULE,
1336};
1337
Amit Shah1c85bf32010-01-18 19:15:07 +05301338/*
1339 * Once we're further in boot, we get probed like any other virtio
1340 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301341 *
1342 * If the host also supports multiple console ports, we check the
1343 * config space to see how many ports the host has spawned. We
1344 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301345 */
1346static int __devinit virtcons_probe(struct virtio_device *vdev)
1347{
Amit Shah1c85bf32010-01-18 19:15:07 +05301348 struct ports_device *portdev;
1349 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301350 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301351
1352 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1353 if (!portdev) {
1354 err = -ENOMEM;
1355 goto fail;
1356 }
1357
1358 /* Attach this portdev to this virtio_device, and vice-versa. */
1359 portdev->vdev = vdev;
1360 vdev->priv = portdev;
1361
Amit Shahfb08bd22009-12-21 21:36:04 +05301362 spin_lock_irq(&pdrvdata_lock);
1363 portdev->drv_index = pdrvdata.index++;
1364 spin_unlock_irq(&pdrvdata_lock);
1365
1366 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1367 &portdev_fops);
1368 if (portdev->chr_major < 0) {
1369 dev_err(&vdev->dev,
1370 "Error %d registering chrdev for device %u\n",
1371 portdev->chr_major, portdev->drv_index);
1372 err = portdev->chr_major;
1373 goto free;
1374 }
1375
Amit Shah17634ba2009-12-21 21:03:25 +05301376 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301377 portdev->config.max_nr_ports = 1;
1378 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1379 multiport = true;
1380 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1381
Amit Shahb99fa812010-05-19 22:15:46 -06001382 vdev->config->get(vdev, offsetof(struct virtio_console_config,
Amit Shahb99fa812010-05-19 22:15:46 -06001383 max_nr_ports),
Amit Shah17634ba2009-12-21 21:03:25 +05301384 &portdev->config.max_nr_ports,
1385 sizeof(portdev->config.max_nr_ports));
Amit Shah17634ba2009-12-21 21:03:25 +05301386 }
1387
1388 /* Let the Host know we support multiple ports.*/
1389 vdev->config->finalize_features(vdev);
1390
Amit Shah2658a792010-01-18 19:15:11 +05301391 err = init_vqs(portdev);
1392 if (err < 0) {
1393 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301394 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301395 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301396
Amit Shah17634ba2009-12-21 21:03:25 +05301397 spin_lock_init(&portdev->ports_lock);
1398 INIT_LIST_HEAD(&portdev->ports);
1399
1400 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301401 unsigned int nr_added_bufs;
1402
Amit Shah17634ba2009-12-21 21:03:25 +05301403 spin_lock_init(&portdev->cvq_lock);
1404 INIT_WORK(&portdev->control_work, &control_work_handler);
1405
Amit Shah335a64a5c2010-02-24 10:37:44 +05301406 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1407 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301408 dev_err(&vdev->dev,
1409 "Error allocating buffers for control queue\n");
1410 err = -ENOMEM;
1411 goto free_vqs;
1412 }
Amit Shah1d051602010-05-19 22:15:49 -06001413 } else {
1414 /*
1415 * For backward compatibility: Create a console port
1416 * if we're running on older host.
1417 */
1418 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301419 }
1420
Amit Shahf909f852010-05-19 22:15:48 -06001421 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1422 VIRTIO_CONSOLE_DEVICE_READY, 1);
Rusty Russell31610432007-10-22 11:03:39 +10001423 return 0;
1424
Amit Shah22a29ea2010-02-12 10:32:17 +05301425free_vqs:
1426 vdev->config->del_vqs(vdev);
1427 kfree(portdev->in_vqs);
1428 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301429free_chrdev:
1430 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001431free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301432 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001433fail:
Amit Shaheaeff962010-05-19 22:15:47 -06001434 /* The host might want to notify mgmt sw about device add failure */
1435 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1436 VIRTIO_CONSOLE_DEVICE_READY, 0);
Rusty Russell31610432007-10-22 11:03:39 +10001437 return err;
1438}
1439
Amit Shah71778762010-02-12 10:32:16 +05301440static void virtcons_remove(struct virtio_device *vdev)
1441{
1442 struct ports_device *portdev;
1443 struct port *port, *port2;
1444 struct port_buffer *buf;
1445 unsigned int len;
1446
1447 portdev = vdev->priv;
1448
1449 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301450
1451 list_for_each_entry_safe(port, port2, &portdev->ports, list)
1452 remove_port(port);
1453
1454 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1455
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001456 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
Amit Shah71778762010-02-12 10:32:16 +05301457 free_buf(buf);
1458
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001459 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
Amit Shah71778762010-02-12 10:32:16 +05301460 free_buf(buf);
1461
1462 vdev->config->del_vqs(vdev);
1463 kfree(portdev->in_vqs);
1464 kfree(portdev->out_vqs);
1465
1466 kfree(portdev);
1467}
1468
Rusty Russell31610432007-10-22 11:03:39 +10001469static struct virtio_device_id id_table[] = {
1470 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1471 { 0 },
1472};
1473
Christian Borntraegerc2983452008-11-25 13:36:26 +01001474static unsigned int features[] = {
1475 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001476 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001477};
1478
Rusty Russell31610432007-10-22 11:03:39 +10001479static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001480 .feature_table = features,
1481 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001482 .driver.name = KBUILD_MODNAME,
1483 .driver.owner = THIS_MODULE,
1484 .id_table = id_table,
1485 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301486 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301487 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001488};
1489
1490static int __init init(void)
1491{
Amit Shahfb08bd22009-12-21 21:36:04 +05301492 int err;
1493
1494 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1495 if (IS_ERR(pdrvdata.class)) {
1496 err = PTR_ERR(pdrvdata.class);
1497 pr_err("Error %d creating virtio-ports class\n", err);
1498 return err;
1499 }
Amit Shahd99393e2009-12-21 22:36:21 +05301500
1501 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1502 if (!pdrvdata.debugfs_dir) {
1503 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1504 PTR_ERR(pdrvdata.debugfs_dir));
1505 }
Amit Shah38edf582010-01-18 19:15:05 +05301506 INIT_LIST_HEAD(&pdrvdata.consoles);
1507
Rusty Russell31610432007-10-22 11:03:39 +10001508 return register_virtio_driver(&virtio_console);
1509}
Amit Shah71778762010-02-12 10:32:16 +05301510
1511static void __exit fini(void)
1512{
1513 unregister_virtio_driver(&virtio_console);
1514
1515 class_destroy(pdrvdata.class);
1516 if (pdrvdata.debugfs_dir)
1517 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1518}
Rusty Russell31610432007-10-22 11:03:39 +10001519module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301520module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001521
1522MODULE_DEVICE_TABLE(virtio, id_table);
1523MODULE_DESCRIPTION("Virtio console driver");
1524MODULE_LICENSE("GPL");