blob: 9a698707e14b024f80b95737dc27cc2731f35cc4 [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;
Amit Shah7f5d8102009-12-21 22:22:08 +0530113 struct work_struct config_work;
Amit Shah17634ba2009-12-21 21:03:25 +0530114
115 struct list_head ports;
116
117 /* To protect the list of ports */
118 spinlock_t ports_lock;
119
120 /* To protect the vq operations for the control channel */
121 spinlock_t cvq_lock;
122
123 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600124 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530125
126 /* The virtio device we're associated with */
127 struct virtio_device *vdev;
128
129 /*
130 * A couple of virtqueues for the control channel: one for
131 * guest->host transfers, one for host->guest transfers
132 */
133 struct virtqueue *c_ivq, *c_ovq;
134
135 /* Array of per-port IO virtqueues */
136 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530137
138 /* Used for numbering devices for sysfs and debugfs */
139 unsigned int drv_index;
140
141 /* Major number for this device. Ports will be created as minors. */
142 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530143};
144
Amit Shah1c85bf32010-01-18 19:15:07 +0530145/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530146struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530147 /* Next port in the list, head is in the ports_device */
148 struct list_head list;
149
Amit Shah1c85bf32010-01-18 19:15:07 +0530150 /* Pointer to the parent virtio_console device */
151 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530152
153 /* The current buffer from which data has to be fed to readers */
154 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000155
Amit Shah203baab2010-01-18 19:15:12 +0530156 /*
157 * To protect the operations on the in_vq associated with this
158 * port. Has to be a spinlock because it can be called from
159 * interrupt context (get_char()).
160 */
161 spinlock_t inbuf_lock;
162
Amit Shah1c85bf32010-01-18 19:15:07 +0530163 /* The IO vqs for this port */
164 struct virtqueue *in_vq, *out_vq;
165
Amit Shahd99393e2009-12-21 22:36:21 +0530166 /* File in the debugfs directory that exposes this port's information */
167 struct dentry *debugfs_file;
168
Amit Shah4f23c572010-01-18 19:15:09 +0530169 /*
170 * The entries in this struct will be valid if this port is
171 * hooked up to an hvc console
172 */
173 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530174
Amit Shahfb08bd22009-12-21 21:36:04 +0530175 /* Each port associates with a separate char device */
176 struct cdev cdev;
177 struct device *dev;
178
Amit Shah2030fa42009-12-21 21:49:30 +0530179 /* A waitqueue for poll() or blocking read operations */
180 wait_queue_head_t waitqueue;
181
Amit Shah431edb82009-12-21 21:57:40 +0530182 /* The 'name' of the port that we expose via sysfs properties */
183 char *name;
184
Amit Shah17634ba2009-12-21 21:03:25 +0530185 /* The 'id' to identify the port with the Host */
186 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530187
188 /* Is the host device open */
189 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530190
191 /* We should allow only one process to open a port */
192 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530193};
Rusty Russell31610432007-10-22 11:03:39 +1000194
Rusty Russell971f3392010-01-18 19:14:56 +0530195/* This is the very early arch-specified put chars function. */
196static int (*early_put_chars)(u32, const char *, int);
197
Amit Shah38edf582010-01-18 19:15:05 +0530198static struct port *find_port_by_vtermno(u32 vtermno)
199{
200 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530201 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530202 unsigned long flags;
203
204 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530205 list_for_each_entry(cons, &pdrvdata.consoles, list) {
206 if (cons->vtermno == vtermno) {
207 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530208 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530209 }
Amit Shah38edf582010-01-18 19:15:05 +0530210 }
211 port = NULL;
212out:
213 spin_unlock_irqrestore(&pdrvdata_lock, flags);
214 return port;
215}
216
Amit Shah17634ba2009-12-21 21:03:25 +0530217static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
218{
219 struct port *port;
220 unsigned long flags;
221
222 spin_lock_irqsave(&portdev->ports_lock, flags);
223 list_for_each_entry(port, &portdev->ports, list)
224 if (port->id == id)
225 goto out;
226 port = NULL;
227out:
228 spin_unlock_irqrestore(&portdev->ports_lock, flags);
229
230 return port;
231}
232
Amit Shah203baab2010-01-18 19:15:12 +0530233static struct port *find_port_by_vq(struct ports_device *portdev,
234 struct virtqueue *vq)
235{
236 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530237 unsigned long flags;
238
Amit Shah17634ba2009-12-21 21:03:25 +0530239 spin_lock_irqsave(&portdev->ports_lock, flags);
240 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530241 if (port->in_vq == vq || port->out_vq == vq)
242 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530243 port = NULL;
244out:
Amit Shah17634ba2009-12-21 21:03:25 +0530245 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530246 return port;
247}
248
Amit Shah17634ba2009-12-21 21:03:25 +0530249static bool is_console_port(struct port *port)
250{
251 if (port->cons.hvc)
252 return true;
253 return false;
254}
255
256static inline bool use_multiport(struct ports_device *portdev)
257{
258 /*
259 * This condition can be true when put_chars is called from
260 * early_init
261 */
262 if (!portdev->vdev)
263 return 0;
264 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
265}
266
Amit Shahfdb9a052010-01-18 19:15:01 +0530267static void free_buf(struct port_buffer *buf)
268{
269 kfree(buf->buf);
270 kfree(buf);
271}
272
273static struct port_buffer *alloc_buf(size_t buf_size)
274{
275 struct port_buffer *buf;
276
277 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
278 if (!buf)
279 goto fail;
280 buf->buf = kzalloc(buf_size, GFP_KERNEL);
281 if (!buf->buf)
282 goto free_buf;
283 buf->len = 0;
284 buf->offset = 0;
285 buf->size = buf_size;
286 return buf;
287
288free_buf:
289 kfree(buf);
290fail:
291 return NULL;
292}
293
Amit Shaha3cde442010-01-18 19:15:03 +0530294/* Callers should take appropriate locks */
295static void *get_inbuf(struct port *port)
296{
297 struct port_buffer *buf;
298 struct virtqueue *vq;
299 unsigned int len;
300
301 vq = port->in_vq;
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300302 buf = virtqueue_get_buf(vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530303 if (buf) {
304 buf->len = len;
305 buf->offset = 0;
306 }
307 return buf;
308}
309
Rusty Russella23ea922010-01-18 19:14:55 +0530310/*
Amit Shahe27b5192010-01-18 19:15:02 +0530311 * Create a scatter-gather list representing our input buffer and put
312 * it in the queue.
313 *
314 * Callers should take appropriate locks.
315 */
Amit Shah203baab2010-01-18 19:15:12 +0530316static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530317{
318 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530319 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530320
Amit Shahe27b5192010-01-18 19:15:02 +0530321 sg_init_one(sg, buf->buf, buf->size);
322
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300323 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
324 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530325 return ret;
326}
327
Amit Shah88f251a2009-12-21 22:15:30 +0530328/* Discard any unread data this port has. Callers lockers. */
329static void discard_port_data(struct port *port)
330{
331 struct port_buffer *buf;
332 struct virtqueue *vq;
333 unsigned int len;
Amit Shahd6933562010-02-12 10:32:18 +0530334 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530335
336 vq = port->in_vq;
337 if (port->inbuf)
338 buf = port->inbuf;
339 else
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300340 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530341
Amit Shahd6933562010-02-12 10:32:18 +0530342 ret = 0;
343 while (buf) {
344 if (add_inbuf(vq, buf) < 0) {
345 ret++;
346 free_buf(buf);
347 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300348 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530349 }
Amit Shah88f251a2009-12-21 22:15:30 +0530350 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530351 if (ret)
352 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
353 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530354}
355
Amit Shah203baab2010-01-18 19:15:12 +0530356static bool port_has_data(struct port *port)
357{
358 unsigned long flags;
359 bool ret;
360
Amit Shah203baab2010-01-18 19:15:12 +0530361 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +0530362 if (port->inbuf) {
Amit Shah203baab2010-01-18 19:15:12 +0530363 ret = true;
Amit Shahd6933562010-02-12 10:32:18 +0530364 goto out;
365 }
366 port->inbuf = get_inbuf(port);
367 if (port->inbuf) {
368 ret = true;
369 goto out;
370 }
371 ret = false;
372out:
Amit Shah203baab2010-01-18 19:15:12 +0530373 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530374 return ret;
375}
376
Amit Shah3425e702010-05-19 22:15:46 -0600377static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
378 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530379{
380 struct scatterlist sg[1];
381 struct virtio_console_control cpkt;
382 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530383 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530384
Amit Shah3425e702010-05-19 22:15:46 -0600385 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530386 return 0;
387
Amit Shah3425e702010-05-19 22:15:46 -0600388 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530389 cpkt.event = event;
390 cpkt.value = value;
391
Amit Shah3425e702010-05-19 22:15:46 -0600392 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530393
394 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300395 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
396 virtqueue_kick(vq);
397 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530398 cpu_relax();
399 }
400 return 0;
401}
402
Amit Shah3425e702010-05-19 22:15:46 -0600403static ssize_t send_control_msg(struct port *port, unsigned int event,
404 unsigned int value)
405{
406 return __send_control_msg(port->portdev, port->id, event, value);
407}
408
Amit Shahf997f00b2009-12-21 17:28:51 +0530409static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count)
410{
411 struct scatterlist sg[1];
412 struct virtqueue *out_vq;
413 ssize_t ret;
414 unsigned int len;
415
416 out_vq = port->out_vq;
417
418 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300419 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530420
421 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300422 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530423
424 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600425 in_count = 0;
Amit Shahf997f00b2009-12-21 17:28:51 +0530426 goto fail;
427 }
428
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600429 /* Wait till the host acknowledges it pushed out the data we sent. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300430 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530431 cpu_relax();
432fail:
433 /* We're expected to return the amount of data we wrote */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600434 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530435}
436
Amit Shah203baab2010-01-18 19:15:12 +0530437/*
438 * Give out the data that's requested from the buffer that we have
439 * queued up.
440 */
Amit Shahb766cee2009-12-21 21:26:45 +0530441static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
442 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530443{
444 struct port_buffer *buf;
445 unsigned long flags;
446
447 if (!out_count || !port_has_data(port))
448 return 0;
449
450 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530451 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530452
Amit Shahb766cee2009-12-21 21:26:45 +0530453 if (to_user) {
454 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530455
Amit Shahb766cee2009-12-21 21:26:45 +0530456 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
457 if (ret)
458 return -EFAULT;
459 } else {
460 memcpy(out_buf, buf->buf + buf->offset, out_count);
461 }
462
Amit Shah203baab2010-01-18 19:15:12 +0530463 buf->offset += out_count;
464
465 if (buf->offset == buf->len) {
466 /*
467 * We're done using all the data in this buffer.
468 * Re-queue so that the Host can send us more data.
469 */
470 spin_lock_irqsave(&port->inbuf_lock, flags);
471 port->inbuf = NULL;
472
473 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530474 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530475
476 spin_unlock_irqrestore(&port->inbuf_lock, flags);
477 }
Amit Shahb766cee2009-12-21 21:26:45 +0530478 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530479 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530480}
481
Amit Shah2030fa42009-12-21 21:49:30 +0530482/* The condition that must be true for polling to end */
483static bool wait_is_over(struct port *port)
484{
485 return port_has_data(port) || !port->host_connected;
486}
487
488static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
489 size_t count, loff_t *offp)
490{
491 struct port *port;
492 ssize_t ret;
493
494 port = filp->private_data;
495
496 if (!port_has_data(port)) {
497 /*
498 * If nothing's connected on the host just return 0 in
499 * case of list_empty; this tells the userspace app
500 * that there's no connection
501 */
502 if (!port->host_connected)
503 return 0;
504 if (filp->f_flags & O_NONBLOCK)
505 return -EAGAIN;
506
507 ret = wait_event_interruptible(port->waitqueue,
508 wait_is_over(port));
509 if (ret < 0)
510 return ret;
511 }
512 /*
513 * We could've received a disconnection message while we were
514 * waiting for more data.
515 *
516 * This check is not clubbed in the if() statement above as we
517 * might receive some data as well as the host could get
518 * disconnected after we got woken up from our wait. So we
519 * really want to give off whatever data we have and only then
520 * check for host_connected.
521 */
522 if (!port_has_data(port) && !port->host_connected)
523 return 0;
524
525 return fill_readbuf(port, ubuf, count, true);
526}
527
528static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
529 size_t count, loff_t *offp)
530{
531 struct port *port;
532 char *buf;
533 ssize_t ret;
534
535 port = filp->private_data;
536
537 count = min((size_t)(32 * 1024), count);
538
539 buf = kmalloc(count, GFP_KERNEL);
540 if (!buf)
541 return -ENOMEM;
542
543 ret = copy_from_user(buf, ubuf, count);
544 if (ret) {
545 ret = -EFAULT;
546 goto free_buf;
547 }
548
549 ret = send_buf(port, buf, count);
550free_buf:
551 kfree(buf);
552 return ret;
553}
554
555static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
556{
557 struct port *port;
558 unsigned int ret;
559
560 port = filp->private_data;
561 poll_wait(filp, &port->waitqueue, wait);
562
563 ret = 0;
564 if (port->inbuf)
565 ret |= POLLIN | POLLRDNORM;
566 if (port->host_connected)
567 ret |= POLLOUT;
568 if (!port->host_connected)
569 ret |= POLLHUP;
570
571 return ret;
572}
573
574static int port_fops_release(struct inode *inode, struct file *filp)
575{
576 struct port *port;
577
578 port = filp->private_data;
579
580 /* Notify host of port being closed */
581 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
582
Amit Shah88f251a2009-12-21 22:15:30 +0530583 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530584 port->guest_connected = false;
585
Amit Shah88f251a2009-12-21 22:15:30 +0530586 discard_port_data(port);
587
588 spin_unlock_irq(&port->inbuf_lock);
589
Amit Shah2030fa42009-12-21 21:49:30 +0530590 return 0;
591}
592
593static int port_fops_open(struct inode *inode, struct file *filp)
594{
595 struct cdev *cdev = inode->i_cdev;
596 struct port *port;
597
598 port = container_of(cdev, struct port, cdev);
599 filp->private_data = port;
600
601 /*
602 * Don't allow opening of console port devices -- that's done
603 * via /dev/hvc
604 */
605 if (is_console_port(port))
606 return -ENXIO;
607
Amit Shah3c7969c2009-11-26 11:25:38 +0530608 /* Allow only one process to open a particular port at a time */
609 spin_lock_irq(&port->inbuf_lock);
610 if (port->guest_connected) {
611 spin_unlock_irq(&port->inbuf_lock);
612 return -EMFILE;
613 }
614
615 port->guest_connected = true;
616 spin_unlock_irq(&port->inbuf_lock);
617
Amit Shah2030fa42009-12-21 21:49:30 +0530618 /* Notify host of port being opened */
619 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
620
621 return 0;
622}
623
624/*
625 * The file operations that we support: programs in the guest can open
626 * a console device, read from it, write to it, poll for data and
627 * close it. The devices are at
628 * /dev/vport<device number>p<port number>
629 */
630static const struct file_operations port_fops = {
631 .owner = THIS_MODULE,
632 .open = port_fops_open,
633 .read = port_fops_read,
634 .write = port_fops_write,
635 .poll = port_fops_poll,
636 .release = port_fops_release,
637};
638
Amit Shahe27b5192010-01-18 19:15:02 +0530639/*
Rusty Russella23ea922010-01-18 19:14:55 +0530640 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000641 *
Rusty Russella23ea922010-01-18 19:14:55 +0530642 * We turn the characters into a scatter-gather list, add it to the
643 * output queue and then kick the Host. Then we sit here waiting for
644 * it to finish: inefficient in theory, but in practice
645 * implementations will do it immediately (lguest's Launcher does).
646 */
Rusty Russell31610432007-10-22 11:03:39 +1000647static int put_chars(u32 vtermno, const char *buf, int count)
648{
Rusty Russell21206ed2010-01-18 19:15:00 +0530649 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530650
François Diakhaté162a6892010-03-23 18:23:15 +0530651 if (unlikely(early_put_chars))
652 return early_put_chars(vtermno, buf, count);
653
Amit Shah38edf582010-01-18 19:15:05 +0530654 port = find_port_by_vtermno(vtermno);
655 if (!port)
Amit Shah6dc69f92010-05-19 22:15:47 -0600656 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000657
Amit Shahf997f00b2009-12-21 17:28:51 +0530658 return send_buf(port, (void *)buf, count);
Rusty Russell31610432007-10-22 11:03:39 +1000659}
660
Rusty Russella23ea922010-01-18 19:14:55 +0530661/*
Rusty Russella23ea922010-01-18 19:14:55 +0530662 * get_chars() is the callback from the hvc_console infrastructure
663 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000664 *
Amit Shah203baab2010-01-18 19:15:12 +0530665 * We call out to fill_readbuf that gets us the required data from the
666 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530667 */
Rusty Russell31610432007-10-22 11:03:39 +1000668static int get_chars(u32 vtermno, char *buf, int count)
669{
Rusty Russell21206ed2010-01-18 19:15:00 +0530670 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000671
Amit Shah6dc69f92010-05-19 22:15:47 -0600672 /* If we've not set up the port yet, we have no input to give. */
673 if (unlikely(early_put_chars))
674 return 0;
675
Amit Shah38edf582010-01-18 19:15:05 +0530676 port = find_port_by_vtermno(vtermno);
677 if (!port)
Amit Shah6dc69f92010-05-19 22:15:47 -0600678 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530679
680 /* If we don't have an input queue yet, we can't get input. */
681 BUG_ON(!port->in_vq);
682
Amit Shahb766cee2009-12-21 21:26:45 +0530683 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000684}
Rusty Russell31610432007-10-22 11:03:39 +1000685
Amit Shahcb06e362010-01-18 19:15:08 +0530686static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100687{
Amit Shahcb06e362010-01-18 19:15:08 +0530688 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100689 struct winsize ws;
690
Amit Shah2de16a42010-03-19 17:36:44 +0530691 /* The port could have been hot-unplugged */
692 if (!port)
693 return;
694
Amit Shahcb06e362010-01-18 19:15:08 +0530695 vdev = port->portdev->vdev;
696 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) {
697 vdev->config->get(vdev,
698 offsetof(struct virtio_console_config, cols),
699 &ws.ws_col, sizeof(u16));
700 vdev->config->get(vdev,
701 offsetof(struct virtio_console_config, rows),
702 &ws.ws_row, sizeof(u16));
Amit Shah4f23c572010-01-18 19:15:09 +0530703 hvc_resize(port->cons.hvc, ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100704 }
705}
706
Amit Shah38edf582010-01-18 19:15:05 +0530707/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200708static int notifier_add_vio(struct hvc_struct *hp, int data)
709{
Amit Shah38edf582010-01-18 19:15:05 +0530710 struct port *port;
711
712 port = find_port_by_vtermno(hp->vtermno);
713 if (!port)
714 return -EINVAL;
715
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200716 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530717 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100718
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200719 return 0;
720}
721
722static void notifier_del_vio(struct hvc_struct *hp, int data)
723{
724 hp->irq_requested = 0;
725}
726
Amit Shah17634ba2009-12-21 21:03:25 +0530727/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530728static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530729 .get_chars = get_chars,
730 .put_chars = put_chars,
731 .notifier_add = notifier_add_vio,
732 .notifier_del = notifier_del_vio,
733 .notifier_hangup = notifier_del_vio,
734};
735
736/*
737 * Console drivers are initialized very early so boot messages can go
738 * out, so we do things slightly differently from the generic virtio
739 * initialization of the net and block drivers.
740 *
741 * At this stage, the console is output-only. It's too early to set
742 * up a virtqueue, so we let the drivers do some boutique early-output
743 * thing.
744 */
745int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
746{
747 early_put_chars = put_chars;
748 return hvc_instantiate(0, 0, &hv_ops);
749}
750
Amit Shah17634ba2009-12-21 21:03:25 +0530751int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530752{
753 int ret;
754
755 /*
756 * The Host's telling us this port is a console port. Hook it
757 * up with an hvc console.
758 *
759 * To set up and manage our virtual console, we call
760 * hvc_alloc().
761 *
762 * The first argument of hvc_alloc() is the virtual console
763 * number. The second argument is the parameter for the
764 * notification mechanism (like irq number). We currently
765 * leave this as zero, virtqueues have implicit notifications.
766 *
767 * The third argument is a "struct hv_ops" containing the
768 * put_chars() get_chars(), notifier_add() and notifier_del()
769 * pointers. The final argument is the output buffer size: we
770 * can do any size, so we put PAGE_SIZE here.
771 */
772 port->cons.vtermno = pdrvdata.next_vtermno;
773
774 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
775 if (IS_ERR(port->cons.hvc)) {
776 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530777 dev_err(port->dev,
778 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530779 port->cons.hvc = NULL;
780 return ret;
781 }
782 spin_lock_irq(&pdrvdata_lock);
783 pdrvdata.next_vtermno++;
784 list_add_tail(&port->cons.list, &pdrvdata.consoles);
785 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530786 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530787
Amit Shah2030fa42009-12-21 21:49:30 +0530788 /* Notify host of port being opened */
789 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
790
Amit Shahcfa6d372010-01-18 19:15:10 +0530791 return 0;
792}
793
Amit Shah431edb82009-12-21 21:57:40 +0530794static ssize_t show_port_name(struct device *dev,
795 struct device_attribute *attr, char *buffer)
796{
797 struct port *port;
798
799 port = dev_get_drvdata(dev);
800
801 return sprintf(buffer, "%s\n", port->name);
802}
803
804static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
805
806static struct attribute *port_sysfs_entries[] = {
807 &dev_attr_name.attr,
808 NULL
809};
810
811static struct attribute_group port_attribute_group = {
812 .name = NULL, /* put in device directory */
813 .attrs = port_sysfs_entries,
814};
815
Amit Shahd99393e2009-12-21 22:36:21 +0530816static int debugfs_open(struct inode *inode, struct file *filp)
817{
818 filp->private_data = inode->i_private;
819 return 0;
820}
821
822static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
823 size_t count, loff_t *offp)
824{
825 struct port *port;
826 char *buf;
827 ssize_t ret, out_offset, out_count;
828
829 out_count = 1024;
830 buf = kmalloc(out_count, GFP_KERNEL);
831 if (!buf)
832 return -ENOMEM;
833
834 port = filp->private_data;
835 out_offset = 0;
836 out_offset += snprintf(buf + out_offset, out_count,
837 "name: %s\n", port->name ? port->name : "");
838 out_offset += snprintf(buf + out_offset, out_count - out_offset,
839 "guest_connected: %d\n", port->guest_connected);
840 out_offset += snprintf(buf + out_offset, out_count - out_offset,
841 "host_connected: %d\n", port->host_connected);
842 out_offset += snprintf(buf + out_offset, out_count - out_offset,
843 "is_console: %s\n",
844 is_console_port(port) ? "yes" : "no");
845 out_offset += snprintf(buf + out_offset, out_count - out_offset,
846 "console_vtermno: %u\n", port->cons.vtermno);
847
848 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
849 kfree(buf);
850 return ret;
851}
852
853static const struct file_operations port_debugfs_ops = {
854 .owner = THIS_MODULE,
855 .open = debugfs_open,
856 .read = debugfs_read,
857};
858
Amit Shah1f7aa422009-12-21 22:27:31 +0530859/* Remove all port-specific data. */
860static int remove_port(struct port *port)
861{
Amit Shaha9cdd482010-02-12 10:32:15 +0530862 struct port_buffer *buf;
863
Amit Shah1f7aa422009-12-21 22:27:31 +0530864 spin_lock_irq(&port->portdev->ports_lock);
865 list_del(&port->list);
866 spin_unlock_irq(&port->portdev->ports_lock);
867
868 if (is_console_port(port)) {
869 spin_lock_irq(&pdrvdata_lock);
870 list_del(&port->cons.list);
871 spin_unlock_irq(&pdrvdata_lock);
Amit Shah69eb9a92010-05-19 22:15:47 -0600872#if 0
873 /*
874 * hvc_remove() not called as removing one hvc port
875 * results in other hvc ports getting frozen.
876 *
877 * Once this is resolved in hvc, this functionality
878 * will be enabled. Till that is done, the -EPIPE
879 * return from get_chars() above will help
880 * hvc_console.c to clean up on ports we remove here.
881 */
Amit Shah1f7aa422009-12-21 22:27:31 +0530882 hvc_remove(port->cons.hvc);
Amit Shah69eb9a92010-05-19 22:15:47 -0600883#endif
Amit Shah1f7aa422009-12-21 22:27:31 +0530884 }
885 if (port->guest_connected)
886 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
887
Amit Shah1f7aa422009-12-21 22:27:31 +0530888 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
889 device_destroy(pdrvdata.class, port->dev->devt);
890 cdev_del(&port->cdev);
891
Amit Shaha9cdd482010-02-12 10:32:15 +0530892 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +0530893 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +0530894
895 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300896 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +0530897 free_buf(buf);
898
Amit Shah1f7aa422009-12-21 22:27:31 +0530899 kfree(port->name);
900
Amit Shahd99393e2009-12-21 22:36:21 +0530901 debugfs_remove(port->debugfs_file);
902
Amit Shah1f7aa422009-12-21 22:27:31 +0530903 kfree(port);
904 return 0;
905}
906
Amit Shah17634ba2009-12-21 21:03:25 +0530907/* Any private messages that the Host and Guest want to share */
908static void handle_control_message(struct ports_device *portdev,
909 struct port_buffer *buf)
910{
911 struct virtio_console_control *cpkt;
912 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +0530913 size_t name_size;
914 int err;
Amit Shah17634ba2009-12-21 21:03:25 +0530915
916 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
917
918 port = find_port_by_id(portdev, cpkt->id);
919 if (!port) {
920 /* No valid header at start of buffer. Drop it. */
921 dev_dbg(&portdev->vdev->dev,
922 "Invalid index %u in control packet\n", cpkt->id);
923 return;
924 }
925
926 switch (cpkt->event) {
927 case VIRTIO_CONSOLE_CONSOLE_PORT:
928 if (!cpkt->value)
929 break;
930 if (is_console_port(port))
931 break;
932
933 init_port_console(port);
934 /*
935 * Could remove the port here in case init fails - but
936 * have to notify the host first.
937 */
938 break;
939 case VIRTIO_CONSOLE_RESIZE:
940 if (!is_console_port(port))
941 break;
942 port->cons.hvc->irq_requested = 1;
943 resize_console(port);
944 break;
Amit Shah2030fa42009-12-21 21:49:30 +0530945 case VIRTIO_CONSOLE_PORT_OPEN:
946 port->host_connected = cpkt->value;
947 wake_up_interruptible(&port->waitqueue);
948 break;
Amit Shah431edb82009-12-21 21:57:40 +0530949 case VIRTIO_CONSOLE_PORT_NAME:
950 /*
951 * Skip the size of the header and the cpkt to get the size
952 * of the name that was sent
953 */
954 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
955
956 port->name = kmalloc(name_size, GFP_KERNEL);
957 if (!port->name) {
958 dev_err(port->dev,
959 "Not enough space to store port name\n");
960 break;
961 }
962 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
963 name_size - 1);
964 port->name[name_size - 1] = 0;
965
966 /*
967 * Since we only have one sysfs attribute, 'name',
968 * create it only if we have a name for the port.
969 */
970 err = sysfs_create_group(&port->dev->kobj,
971 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +0530972 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +0530973 dev_err(port->dev,
974 "Error %d creating sysfs device attributes\n",
975 err);
Amit Shahec642132010-03-19 17:36:43 +0530976 } else {
977 /*
978 * Generate a udev event so that appropriate
979 * symlinks can be created based on udev
980 * rules.
981 */
982 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
983 }
Amit Shah431edb82009-12-21 21:57:40 +0530984 break;
Amit Shah1f7aa422009-12-21 22:27:31 +0530985 case VIRTIO_CONSOLE_PORT_REMOVE:
986 /*
987 * Hot unplug the port. We don't decrement nr_ports
988 * since we don't want to deal with extra complexities
989 * of using the lowest-available port id: We can just
990 * pick up the nr_ports number as the id and not have
991 * userspace send it to us. This helps us in two
992 * ways:
993 *
994 * - We don't need to have a 'port_id' field in the
995 * config space when a port is hot-added. This is a
996 * good thing as we might queue up multiple hotplug
997 * requests issued in our workqueue.
998 *
999 * - Another way to deal with this would have been to
1000 * use a bitmap of the active ports and select the
1001 * lowest non-active port from that map. That
1002 * bloats the already tight config space and we
1003 * would end up artificially limiting the
1004 * max. number of ports to sizeof(bitmap). Right
1005 * now we can support 2^32 ports (as the port id is
1006 * stored in a u32 type).
1007 *
1008 */
1009 remove_port(port);
1010 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301011 }
1012}
1013
1014static void control_work_handler(struct work_struct *work)
1015{
1016 struct ports_device *portdev;
1017 struct virtqueue *vq;
1018 struct port_buffer *buf;
1019 unsigned int len;
1020
1021 portdev = container_of(work, struct ports_device, control_work);
1022 vq = portdev->c_ivq;
1023
1024 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001025 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301026 spin_unlock(&portdev->cvq_lock);
1027
1028 buf->len = len;
1029 buf->offset = 0;
1030
1031 handle_control_message(portdev, buf);
1032
1033 spin_lock(&portdev->cvq_lock);
1034 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1035 dev_warn(&portdev->vdev->dev,
1036 "Error adding buffer to queue\n");
1037 free_buf(buf);
1038 }
1039 }
1040 spin_unlock(&portdev->cvq_lock);
1041}
1042
1043static void in_intr(struct virtqueue *vq)
1044{
1045 struct port *port;
1046 unsigned long flags;
1047
1048 port = find_port_by_vq(vq->vdev->priv, vq);
1049 if (!port)
1050 return;
1051
1052 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301053 if (!port->inbuf)
1054 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301055
Amit Shah88f251a2009-12-21 22:15:30 +05301056 /*
1057 * Don't queue up data when port is closed. This condition
1058 * can be reached when a console port is not yet connected (no
1059 * tty is spawned) and the host sends out data to console
1060 * ports. For generic serial ports, the host won't
1061 * (shouldn't) send data till the guest is connected.
1062 */
1063 if (!port->guest_connected)
1064 discard_port_data(port);
1065
Amit Shah17634ba2009-12-21 21:03:25 +05301066 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1067
Amit Shah2030fa42009-12-21 21:49:30 +05301068 wake_up_interruptible(&port->waitqueue);
1069
Amit Shah17634ba2009-12-21 21:03:25 +05301070 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1071 hvc_kick();
1072}
1073
1074static void control_intr(struct virtqueue *vq)
1075{
1076 struct ports_device *portdev;
1077
1078 portdev = vq->vdev->priv;
1079 schedule_work(&portdev->control_work);
1080}
1081
Amit Shah7f5d8102009-12-21 22:22:08 +05301082static void config_intr(struct virtio_device *vdev)
1083{
1084 struct ports_device *portdev;
1085
1086 portdev = vdev->priv;
1087 if (use_multiport(portdev)) {
1088 /* Handle port hot-add */
1089 schedule_work(&portdev->config_work);
1090 }
1091 /*
1092 * We'll use this way of resizing only for legacy support.
1093 * For newer userspace (VIRTIO_CONSOLE_F_MULTPORT+), use
1094 * control messages to indicate console size changes so that
1095 * it can be done per-port
1096 */
1097 resize_console(find_port_by_id(portdev, 0));
1098}
1099
Amit Shah22a29ea2010-02-12 10:32:17 +05301100static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
Amit Shah17634ba2009-12-21 21:03:25 +05301101{
1102 struct port_buffer *buf;
Amit Shah335a64a5c2010-02-24 10:37:44 +05301103 unsigned int nr_added_bufs;
1104 int ret;
Amit Shah17634ba2009-12-21 21:03:25 +05301105
Amit Shah335a64a5c2010-02-24 10:37:44 +05301106 nr_added_bufs = 0;
Amit Shah17634ba2009-12-21 21:03:25 +05301107 do {
1108 buf = alloc_buf(PAGE_SIZE);
1109 if (!buf)
1110 break;
1111
1112 spin_lock_irq(lock);
Amit Shah335a64a5c2010-02-24 10:37:44 +05301113 ret = add_inbuf(vq, buf);
1114 if (ret < 0) {
Amit Shah17634ba2009-12-21 21:03:25 +05301115 spin_unlock_irq(lock);
1116 free_buf(buf);
1117 break;
1118 }
Amit Shah335a64a5c2010-02-24 10:37:44 +05301119 nr_added_bufs++;
Amit Shah17634ba2009-12-21 21:03:25 +05301120 spin_unlock_irq(lock);
Amit Shah335a64a5c2010-02-24 10:37:44 +05301121 } while (ret > 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301122
Amit Shah335a64a5c2010-02-24 10:37:44 +05301123 return nr_added_bufs;
Amit Shah17634ba2009-12-21 21:03:25 +05301124}
1125
1126static int add_port(struct ports_device *portdev, u32 id)
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301127{
Amit Shahd99393e2009-12-21 22:36:21 +05301128 char debugfs_name[16];
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301129 struct port *port;
Amit Shahd6933562010-02-12 10:32:18 +05301130 struct port_buffer *buf;
Amit Shahfb08bd22009-12-21 21:36:04 +05301131 dev_t devt;
Amit Shah335a64a5c2010-02-24 10:37:44 +05301132 unsigned int nr_added_bufs;
Rusty Russell31610432007-10-22 11:03:39 +10001133 int err;
Rusty Russell31610432007-10-22 11:03:39 +10001134
Amit Shah1c85bf32010-01-18 19:15:07 +05301135 port = kmalloc(sizeof(*port), GFP_KERNEL);
Rusty Russelld8a02bd2010-01-18 19:15:06 +05301136 if (!port) {
1137 err = -ENOMEM;
1138 goto fail;
Amit Shahf5508042010-01-18 19:14:59 +05301139 }
Rusty Russell73954482010-01-18 19:15:04 +05301140
Amit Shah1c85bf32010-01-18 19:15:07 +05301141 port->portdev = portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301142 port->id = id;
Amit Shah203baab2010-01-18 19:15:12 +05301143
Amit Shah431edb82009-12-21 21:57:40 +05301144 port->name = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301145 port->inbuf = NULL;
Amit Shah17634ba2009-12-21 21:03:25 +05301146 port->cons.hvc = NULL;
Amit Shah203baab2010-01-18 19:15:12 +05301147
Amit Shah3c7969c2009-11-26 11:25:38 +05301148 port->host_connected = port->guest_connected = false;
Amit Shah2030fa42009-12-21 21:49:30 +05301149
Amit Shah17634ba2009-12-21 21:03:25 +05301150 port->in_vq = portdev->in_vqs[port->id];
1151 port->out_vq = portdev->out_vqs[port->id];
Rusty Russell31610432007-10-22 11:03:39 +10001152
Amit Shah2030fa42009-12-21 21:49:30 +05301153 cdev_init(&port->cdev, &port_fops);
Amit Shahfb08bd22009-12-21 21:36:04 +05301154
1155 devt = MKDEV(portdev->chr_major, id);
1156 err = cdev_add(&port->cdev, devt, 1);
1157 if (err < 0) {
1158 dev_err(&port->portdev->vdev->dev,
1159 "Error %d adding cdev for port %u\n", err, id);
1160 goto free_port;
1161 }
1162 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1163 devt, port, "vport%up%u",
1164 port->portdev->drv_index, id);
1165 if (IS_ERR(port->dev)) {
1166 err = PTR_ERR(port->dev);
1167 dev_err(&port->portdev->vdev->dev,
1168 "Error %d creating device for port %u\n",
1169 err, id);
1170 goto free_cdev;
1171 }
1172
Amit Shah203baab2010-01-18 19:15:12 +05301173 spin_lock_init(&port->inbuf_lock);
Amit Shah2030fa42009-12-21 21:49:30 +05301174 init_waitqueue_head(&port->waitqueue);
Amit Shah203baab2010-01-18 19:15:12 +05301175
Amit Shahd6933562010-02-12 10:32:18 +05301176 /* Fill the in_vq with buffers so the host can send us data. */
Amit Shah335a64a5c2010-02-24 10:37:44 +05301177 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1178 if (!nr_added_bufs) {
Amit Shahd6933562010-02-12 10:32:18 +05301179 dev_err(port->dev, "Error allocating inbufs\n");
Amit Shah1c85bf32010-01-18 19:15:07 +05301180 err = -ENOMEM;
Amit Shahfb08bd22009-12-21 21:36:04 +05301181 goto free_device;
Amit Shah1c85bf32010-01-18 19:15:07 +05301182 }
Rusty Russell31610432007-10-22 11:03:39 +10001183
Amit Shah17634ba2009-12-21 21:03:25 +05301184 /*
1185 * If we're not using multiport support, this has to be a console port
1186 */
1187 if (!use_multiport(port->portdev)) {
1188 err = init_port_console(port);
1189 if (err)
Amit Shahd6933562010-02-12 10:32:18 +05301190 goto free_inbufs;
Amit Shah17634ba2009-12-21 21:03:25 +05301191 }
1192
1193 spin_lock_irq(&portdev->ports_lock);
1194 list_add_tail(&port->list, &port->portdev->ports);
1195 spin_unlock_irq(&portdev->ports_lock);
1196
1197 /*
1198 * Tell the Host we're set so that it can send us various
1199 * configuration parameters for this port (eg, port name,
1200 * caching, whether this is a console port, etc.)
1201 */
1202 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah38edf582010-01-18 19:15:05 +05301203
Amit Shahd99393e2009-12-21 22:36:21 +05301204 if (pdrvdata.debugfs_dir) {
1205 /*
1206 * Finally, create the debugfs file that we can use to
1207 * inspect a port's state at any time
1208 */
1209 sprintf(debugfs_name, "vport%up%u",
1210 port->portdev->drv_index, id);
1211 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1212 pdrvdata.debugfs_dir,
1213 port,
1214 &port_debugfs_ops);
1215 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301216 return 0;
1217
Amit Shahd6933562010-02-12 10:32:18 +05301218free_inbufs:
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001219 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shahd6933562010-02-12 10:32:18 +05301220 free_buf(buf);
Amit Shahfb08bd22009-12-21 21:36:04 +05301221free_device:
1222 device_destroy(pdrvdata.class, port->dev->devt);
1223free_cdev:
1224 cdev_del(&port->cdev);
Amit Shah1c85bf32010-01-18 19:15:07 +05301225free_port:
1226 kfree(port);
1227fail:
Amit Shaheaeff962010-05-19 22:15:47 -06001228 /* The host might want to notify management sw about port add failure */
1229 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shah1c85bf32010-01-18 19:15:07 +05301230 return err;
1231}
1232
Amit Shah7f5d8102009-12-21 22:22:08 +05301233/*
1234 * The workhandler for config-space updates.
1235 *
1236 * This is called when ports are hot-added.
1237 */
1238static void config_work_handler(struct work_struct *work)
1239{
Amit Shahb99fa812010-05-19 22:15:46 -06001240 struct virtio_console_config virtconconf;
Amit Shah7f5d8102009-12-21 22:22:08 +05301241 struct ports_device *portdev;
1242 struct virtio_device *vdev;
1243 int err;
1244
1245 portdev = container_of(work, struct ports_device, config_work);
1246
1247 vdev = portdev->vdev;
1248 vdev->config->get(vdev,
Amit Shahb99fa812010-05-19 22:15:46 -06001249 offsetof(struct virtio_console_config, nr_ports),
Amit Shah7f5d8102009-12-21 22:22:08 +05301250 &virtconconf.nr_ports,
1251 sizeof(virtconconf.nr_ports));
1252
1253 if (portdev->config.nr_ports == virtconconf.nr_ports) {
1254 /*
1255 * Port 0 got hot-added. Since we already did all the
1256 * other initialisation for it, just tell the Host
Amit Shah1f7aa422009-12-21 22:27:31 +05301257 * that the port is ready if we find the port. In
1258 * case the port was hot-removed earlier, we call
1259 * add_port to add the port.
Amit Shah7f5d8102009-12-21 22:22:08 +05301260 */
1261 struct port *port;
1262
1263 port = find_port_by_id(portdev, 0);
Amit Shah1f7aa422009-12-21 22:27:31 +05301264 if (!port)
1265 add_port(portdev, 0);
1266 else
1267 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shah7f5d8102009-12-21 22:22:08 +05301268 return;
1269 }
1270 if (virtconconf.nr_ports > portdev->config.max_nr_ports) {
1271 dev_warn(&vdev->dev,
1272 "More ports specified (%u) than allowed (%u)",
1273 portdev->config.nr_ports + 1,
1274 portdev->config.max_nr_ports);
1275 return;
1276 }
1277 if (virtconconf.nr_ports < portdev->config.nr_ports)
1278 return;
1279
1280 /* Hot-add ports */
1281 while (virtconconf.nr_ports - portdev->config.nr_ports) {
1282 err = add_port(portdev, portdev->config.nr_ports);
1283 if (err)
1284 break;
1285 portdev->config.nr_ports++;
1286 }
1287}
1288
Amit Shah2658a792010-01-18 19:15:11 +05301289static int init_vqs(struct ports_device *portdev)
1290{
1291 vq_callback_t **io_callbacks;
1292 char **io_names;
1293 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301294 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301295 int err;
1296
Amit Shah17634ba2009-12-21 21:03:25 +05301297 nr_ports = portdev->config.max_nr_ports;
1298 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301299
1300 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1301 if (!vqs) {
1302 err = -ENOMEM;
1303 goto fail;
1304 }
1305 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1306 if (!io_callbacks) {
1307 err = -ENOMEM;
1308 goto free_vqs;
1309 }
1310 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1311 if (!io_names) {
1312 err = -ENOMEM;
1313 goto free_callbacks;
1314 }
1315 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1316 GFP_KERNEL);
1317 if (!portdev->in_vqs) {
1318 err = -ENOMEM;
1319 goto free_names;
1320 }
1321 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1322 GFP_KERNEL);
1323 if (!portdev->out_vqs) {
1324 err = -ENOMEM;
1325 goto free_invqs;
1326 }
1327
Amit Shah17634ba2009-12-21 21:03:25 +05301328 /*
1329 * For backward compat (newer host but older guest), the host
1330 * spawns a console port first and also inits the vqs for port
1331 * 0 before others.
1332 */
1333 j = 0;
1334 io_callbacks[j] = in_intr;
1335 io_callbacks[j + 1] = NULL;
1336 io_names[j] = "input";
1337 io_names[j + 1] = "output";
1338 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301339
Amit Shah17634ba2009-12-21 21:03:25 +05301340 if (use_multiport(portdev)) {
1341 io_callbacks[j] = control_intr;
1342 io_callbacks[j + 1] = NULL;
1343 io_names[j] = "control-i";
1344 io_names[j + 1] = "control-o";
1345
1346 for (i = 1; i < nr_ports; i++) {
1347 j += 2;
1348 io_callbacks[j] = in_intr;
1349 io_callbacks[j + 1] = NULL;
1350 io_names[j] = "input";
1351 io_names[j + 1] = "output";
1352 }
1353 }
Amit Shah2658a792010-01-18 19:15:11 +05301354 /* Find the queues. */
1355 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1356 io_callbacks,
1357 (const char **)io_names);
1358 if (err)
1359 goto free_outvqs;
1360
Amit Shah17634ba2009-12-21 21:03:25 +05301361 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301362 portdev->in_vqs[0] = vqs[0];
1363 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301364 j += 2;
1365 if (use_multiport(portdev)) {
1366 portdev->c_ivq = vqs[j];
1367 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301368
Amit Shah17634ba2009-12-21 21:03:25 +05301369 for (i = 1; i < nr_ports; i++) {
1370 j += 2;
1371 portdev->in_vqs[i] = vqs[j];
1372 portdev->out_vqs[i] = vqs[j + 1];
1373 }
1374 }
Amit Shah2658a792010-01-18 19:15:11 +05301375 kfree(io_callbacks);
1376 kfree(io_names);
1377 kfree(vqs);
1378
1379 return 0;
1380
1381free_names:
1382 kfree(io_names);
1383free_callbacks:
1384 kfree(io_callbacks);
1385free_outvqs:
1386 kfree(portdev->out_vqs);
1387free_invqs:
1388 kfree(portdev->in_vqs);
1389free_vqs:
1390 kfree(vqs);
1391fail:
1392 return err;
1393}
1394
Amit Shahfb08bd22009-12-21 21:36:04 +05301395static const struct file_operations portdev_fops = {
1396 .owner = THIS_MODULE,
1397};
1398
Amit Shah1c85bf32010-01-18 19:15:07 +05301399/*
1400 * Once we're further in boot, we get probed like any other virtio
1401 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301402 *
1403 * If the host also supports multiple console ports, we check the
1404 * config space to see how many ports the host has spawned. We
1405 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301406 */
1407static int __devinit virtcons_probe(struct virtio_device *vdev)
1408{
Amit Shah1c85bf32010-01-18 19:15:07 +05301409 struct ports_device *portdev;
Amit Shah17634ba2009-12-21 21:03:25 +05301410 u32 i;
Amit Shah1c85bf32010-01-18 19:15:07 +05301411 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301412 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301413
1414 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1415 if (!portdev) {
1416 err = -ENOMEM;
1417 goto fail;
1418 }
1419
1420 /* Attach this portdev to this virtio_device, and vice-versa. */
1421 portdev->vdev = vdev;
1422 vdev->priv = portdev;
1423
Amit Shahfb08bd22009-12-21 21:36:04 +05301424 spin_lock_irq(&pdrvdata_lock);
1425 portdev->drv_index = pdrvdata.index++;
1426 spin_unlock_irq(&pdrvdata_lock);
1427
1428 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1429 &portdev_fops);
1430 if (portdev->chr_major < 0) {
1431 dev_err(&vdev->dev,
1432 "Error %d registering chrdev for device %u\n",
1433 portdev->chr_major, portdev->drv_index);
1434 err = portdev->chr_major;
1435 goto free;
1436 }
1437
Amit Shah17634ba2009-12-21 21:03:25 +05301438 multiport = false;
1439 portdev->config.nr_ports = 1;
1440 portdev->config.max_nr_ports = 1;
1441 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1442 multiport = true;
1443 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1444
Amit Shahb99fa812010-05-19 22:15:46 -06001445 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1446 nr_ports),
Amit Shah17634ba2009-12-21 21:03:25 +05301447 &portdev->config.nr_ports,
1448 sizeof(portdev->config.nr_ports));
Amit Shahb99fa812010-05-19 22:15:46 -06001449 vdev->config->get(vdev, offsetof(struct virtio_console_config,
1450 max_nr_ports),
Amit Shah17634ba2009-12-21 21:03:25 +05301451 &portdev->config.max_nr_ports,
1452 sizeof(portdev->config.max_nr_ports));
1453 if (portdev->config.nr_ports > portdev->config.max_nr_ports) {
1454 dev_warn(&vdev->dev,
1455 "More ports (%u) specified than allowed (%u). Will init %u ports.",
1456 portdev->config.nr_ports,
1457 portdev->config.max_nr_ports,
1458 portdev->config.max_nr_ports);
1459
1460 portdev->config.nr_ports = portdev->config.max_nr_ports;
1461 }
1462 }
1463
1464 /* Let the Host know we support multiple ports.*/
1465 vdev->config->finalize_features(vdev);
1466
Amit Shah2658a792010-01-18 19:15:11 +05301467 err = init_vqs(portdev);
1468 if (err < 0) {
1469 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301470 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301471 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301472
Amit Shah17634ba2009-12-21 21:03:25 +05301473 spin_lock_init(&portdev->ports_lock);
1474 INIT_LIST_HEAD(&portdev->ports);
1475
1476 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301477 unsigned int nr_added_bufs;
1478
Amit Shah17634ba2009-12-21 21:03:25 +05301479 spin_lock_init(&portdev->cvq_lock);
1480 INIT_WORK(&portdev->control_work, &control_work_handler);
Amit Shah7f5d8102009-12-21 22:22:08 +05301481 INIT_WORK(&portdev->config_work, &config_work_handler);
Amit Shah17634ba2009-12-21 21:03:25 +05301482
Amit Shah335a64a5c2010-02-24 10:37:44 +05301483 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1484 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301485 dev_err(&vdev->dev,
1486 "Error allocating buffers for control queue\n");
1487 err = -ENOMEM;
1488 goto free_vqs;
1489 }
Amit Shah17634ba2009-12-21 21:03:25 +05301490 }
1491
1492 for (i = 0; i < portdev->config.nr_ports; i++)
1493 add_port(portdev, i);
Amit Shah1c85bf32010-01-18 19:15:07 +05301494
Rusty Russell971f3392010-01-18 19:14:56 +05301495 /* Start using the new console output. */
1496 early_put_chars = NULL;
Rusty Russell31610432007-10-22 11:03:39 +10001497 return 0;
1498
Amit Shah22a29ea2010-02-12 10:32:17 +05301499free_vqs:
1500 vdev->config->del_vqs(vdev);
1501 kfree(portdev->in_vqs);
1502 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301503free_chrdev:
1504 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001505free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301506 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001507fail:
Amit Shaheaeff962010-05-19 22:15:47 -06001508 /* The host might want to notify mgmt sw about device add failure */
1509 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1510 VIRTIO_CONSOLE_DEVICE_READY, 0);
Rusty Russell31610432007-10-22 11:03:39 +10001511 return err;
1512}
1513
Amit Shah71778762010-02-12 10:32:16 +05301514static void virtcons_remove(struct virtio_device *vdev)
1515{
1516 struct ports_device *portdev;
1517 struct port *port, *port2;
1518 struct port_buffer *buf;
1519 unsigned int len;
1520
1521 portdev = vdev->priv;
1522
1523 cancel_work_sync(&portdev->control_work);
1524 cancel_work_sync(&portdev->config_work);
1525
1526 list_for_each_entry_safe(port, port2, &portdev->ports, list)
1527 remove_port(port);
1528
1529 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1530
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001531 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
Amit Shah71778762010-02-12 10:32:16 +05301532 free_buf(buf);
1533
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001534 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
Amit Shah71778762010-02-12 10:32:16 +05301535 free_buf(buf);
1536
1537 vdev->config->del_vqs(vdev);
1538 kfree(portdev->in_vqs);
1539 kfree(portdev->out_vqs);
1540
1541 kfree(portdev);
1542}
1543
Rusty Russell31610432007-10-22 11:03:39 +10001544static struct virtio_device_id id_table[] = {
1545 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1546 { 0 },
1547};
1548
Christian Borntraegerc2983452008-11-25 13:36:26 +01001549static unsigned int features[] = {
1550 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001551 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001552};
1553
Rusty Russell31610432007-10-22 11:03:39 +10001554static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001555 .feature_table = features,
1556 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001557 .driver.name = KBUILD_MODNAME,
1558 .driver.owner = THIS_MODULE,
1559 .id_table = id_table,
1560 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301561 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301562 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001563};
1564
1565static int __init init(void)
1566{
Amit Shahfb08bd22009-12-21 21:36:04 +05301567 int err;
1568
1569 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1570 if (IS_ERR(pdrvdata.class)) {
1571 err = PTR_ERR(pdrvdata.class);
1572 pr_err("Error %d creating virtio-ports class\n", err);
1573 return err;
1574 }
Amit Shahd99393e2009-12-21 22:36:21 +05301575
1576 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1577 if (!pdrvdata.debugfs_dir) {
1578 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1579 PTR_ERR(pdrvdata.debugfs_dir));
1580 }
Amit Shah38edf582010-01-18 19:15:05 +05301581 INIT_LIST_HEAD(&pdrvdata.consoles);
1582
Rusty Russell31610432007-10-22 11:03:39 +10001583 return register_virtio_driver(&virtio_console);
1584}
Amit Shah71778762010-02-12 10:32:16 +05301585
1586static void __exit fini(void)
1587{
1588 unregister_virtio_driver(&virtio_console);
1589
1590 class_destroy(pdrvdata.class);
1591 if (pdrvdata.debugfs_dir)
1592 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1593}
Rusty Russell31610432007-10-22 11:03:39 +10001594module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301595module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001596
1597MODULE_DEVICE_TABLE(virtio, id_table);
1598MODULE_DESCRIPTION("Virtio console driver");
1599MODULE_LICENSE("GPL");