blob: cb5edf33bebfb24a3f2574216bd0ac088411485b [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Amit Shah5084f892011-01-31 13:06:37 +05303 * Copyright (C) 2009, 2010, 2011 Red Hat, Inc.
4 * Copyright (C) 2009, 2010, 2011 Amit Shah <amit.shah@redhat.com>
Rusty Russell31610432007-10-22 11:03:39 +10005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
Amit Shahfb08bd22009-12-21 21:36:04 +053020#include <linux/cdev.h>
Amit Shahd99393e2009-12-21 22:36:21 +053021#include <linux/debugfs.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053022#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100023#include <linux/err.h>
Amit Shaha08fa922011-09-14 13:06:41 +053024#include <linux/freezer.h>
Amit Shah2030fa42009-12-21 21:49:30 +053025#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100026#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053027#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053028#include <linux/poll.h>
29#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053031#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100032#include <linux/virtio.h>
33#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053034#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053035#include <linux/workqueue.h>
Amit Shah51df0ac2011-02-01 09:31:25 +053036#include "../tty/hvc/hvc_console.h"
Rusty Russell31610432007-10-22 11:03:39 +100037
Amit Shah38edf582010-01-18 19:15:05 +053038/*
39 * This is a global struct for storing common data for all the devices
40 * this driver handles.
41 *
42 * Mainly, it has a linked list for all the consoles in one place so
43 * that callbacks from hvc for get_chars(), put_chars() work properly
44 * across multiple devices and multiple ports per device.
45 */
46struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053047 /* Used for registering chardevs */
48 struct class *class;
49
Amit Shahd99393e2009-12-21 22:36:21 +053050 /* Used for exporting per-port information to debugfs */
51 struct dentry *debugfs_dir;
52
Amit Shah6bdf2af2010-09-02 18:11:49 +053053 /* List of all the devices we're handling */
54 struct list_head portdevs;
55
Amit Shahfb08bd22009-12-21 21:36:04 +053056 /* Number of devices this driver is handling */
57 unsigned int index;
58
Rusty Russelld8a02bd2010-01-18 19:15:06 +053059 /*
60 * This is used to keep track of the number of hvc consoles
61 * spawned by this driver. This number is given as the first
62 * argument to hvc_alloc(). To correctly map an initial
63 * console spawned via hvc_instantiate to the console being
64 * hooked up via hvc_alloc, we need to pass the same vtermno.
65 *
66 * We also just assume the first console being initialised was
67 * the first one that got used as the initial console.
68 */
69 unsigned int next_vtermno;
70
Amit Shah38edf582010-01-18 19:15:05 +053071 /* All the console devices handled by this driver */
72 struct list_head consoles;
73};
74static struct ports_driver_data pdrvdata;
75
76DEFINE_SPINLOCK(pdrvdata_lock);
77
Amit Shah4f23c572010-01-18 19:15:09 +053078/* This struct holds information that's relevant only for console ports */
79struct console {
80 /* We'll place all consoles in a list in the pdrvdata struct */
81 struct list_head list;
82
83 /* The hvc device associated with this console port */
84 struct hvc_struct *hvc;
85
Amit Shah97788292010-05-06 02:05:08 +053086 /* The size of the console */
87 struct winsize ws;
88
Amit Shah4f23c572010-01-18 19:15:09 +053089 /*
90 * This number identifies the number that we used to register
91 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
92 * number passed on by the hvc callbacks to us to
93 * differentiate between the other console ports handled by
94 * this driver
95 */
96 u32 vtermno;
97};
98
Amit Shahfdb9a052010-01-18 19:15:01 +053099struct port_buffer {
100 char *buf;
101
102 /* size of the buffer in *buf above */
103 size_t size;
104
105 /* used length of the buffer */
106 size_t len;
107 /* offset in the buf from which to consume data */
108 size_t offset;
109};
110
Amit Shah17634ba2009-12-21 21:03:25 +0530111/*
112 * This is a per-device struct that stores data common to all the
113 * ports for that device (vdev->priv).
114 */
115struct ports_device {
Amit Shah6bdf2af2010-09-02 18:11:49 +0530116 /* Next portdev in the list, head is in the pdrvdata struct */
117 struct list_head list;
118
Amit Shah17634ba2009-12-21 21:03:25 +0530119 /*
120 * Workqueue handlers where we process deferred work after
121 * notification
122 */
123 struct work_struct control_work;
124
125 struct list_head ports;
126
127 /* To protect the list of ports */
128 spinlock_t ports_lock;
129
130 /* To protect the vq operations for the control channel */
131 spinlock_t cvq_lock;
132
133 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600134 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530135
136 /* The virtio device we're associated with */
137 struct virtio_device *vdev;
138
139 /*
140 * A couple of virtqueues for the control channel: one for
141 * guest->host transfers, one for host->guest transfers
142 */
143 struct virtqueue *c_ivq, *c_ovq;
144
145 /* Array of per-port IO virtqueues */
146 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530147
148 /* Used for numbering devices for sysfs and debugfs */
149 unsigned int drv_index;
150
151 /* Major number for this device. Ports will be created as minors. */
152 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530153};
154
Amit Shah1c85bf32010-01-18 19:15:07 +0530155/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530156struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530157 /* Next port in the list, head is in the ports_device */
158 struct list_head list;
159
Amit Shah1c85bf32010-01-18 19:15:07 +0530160 /* Pointer to the parent virtio_console device */
161 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530162
163 /* The current buffer from which data has to be fed to readers */
164 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000165
Amit Shah203baab2010-01-18 19:15:12 +0530166 /*
167 * To protect the operations on the in_vq associated with this
168 * port. Has to be a spinlock because it can be called from
169 * interrupt context (get_char()).
170 */
171 spinlock_t inbuf_lock;
172
Amit Shahcdfadfc2010-05-19 22:15:50 -0600173 /* Protect the operations on the out_vq. */
174 spinlock_t outvq_lock;
175
Amit Shah1c85bf32010-01-18 19:15:07 +0530176 /* The IO vqs for this port */
177 struct virtqueue *in_vq, *out_vq;
178
Amit Shahd99393e2009-12-21 22:36:21 +0530179 /* File in the debugfs directory that exposes this port's information */
180 struct dentry *debugfs_file;
181
Amit Shah4f23c572010-01-18 19:15:09 +0530182 /*
183 * The entries in this struct will be valid if this port is
184 * hooked up to an hvc console
185 */
186 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530187
Amit Shahfb08bd22009-12-21 21:36:04 +0530188 /* Each port associates with a separate char device */
Amit Shahd22a6982010-09-02 18:20:59 +0530189 struct cdev *cdev;
Amit Shahfb08bd22009-12-21 21:36:04 +0530190 struct device *dev;
191
Amit Shahb353a6b2010-09-02 18:38:29 +0530192 /* Reference-counting to handle port hot-unplugs and file operations */
193 struct kref kref;
194
Amit Shah2030fa42009-12-21 21:49:30 +0530195 /* A waitqueue for poll() or blocking read operations */
196 wait_queue_head_t waitqueue;
197
Amit Shah431edb82009-12-21 21:57:40 +0530198 /* The 'name' of the port that we expose via sysfs properties */
199 char *name;
200
Amit Shah3eae0ad2010-09-02 18:47:52 +0530201 /* We can notify apps of host connect / disconnect events via SIGIO */
202 struct fasync_struct *async_queue;
203
Amit Shah17634ba2009-12-21 21:03:25 +0530204 /* The 'id' to identify the port with the Host */
205 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530206
Amit Shahcdfadfc2010-05-19 22:15:50 -0600207 bool outvq_full;
208
Amit Shah2030fa42009-12-21 21:49:30 +0530209 /* Is the host device open */
210 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530211
212 /* We should allow only one process to open a port */
213 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530214};
Rusty Russell31610432007-10-22 11:03:39 +1000215
Rusty Russell971f3392010-01-18 19:14:56 +0530216/* This is the very early arch-specified put chars function. */
217static int (*early_put_chars)(u32, const char *, int);
218
Amit Shah38edf582010-01-18 19:15:05 +0530219static struct port *find_port_by_vtermno(u32 vtermno)
220{
221 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530222 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530223 unsigned long flags;
224
225 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530226 list_for_each_entry(cons, &pdrvdata.consoles, list) {
227 if (cons->vtermno == vtermno) {
228 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530229 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530230 }
Amit Shah38edf582010-01-18 19:15:05 +0530231 }
232 port = NULL;
233out:
234 spin_unlock_irqrestore(&pdrvdata_lock, flags);
235 return port;
236}
237
Amit Shah04950cd2010-09-02 18:20:58 +0530238static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev,
239 dev_t dev)
240{
241 struct port *port;
242 unsigned long flags;
243
244 spin_lock_irqsave(&portdev->ports_lock, flags);
245 list_for_each_entry(port, &portdev->ports, list)
Amit Shahd22a6982010-09-02 18:20:59 +0530246 if (port->cdev->dev == dev)
Amit Shah04950cd2010-09-02 18:20:58 +0530247 goto out;
248 port = NULL;
249out:
250 spin_unlock_irqrestore(&portdev->ports_lock, flags);
251
252 return port;
253}
254
255static struct port *find_port_by_devt(dev_t dev)
256{
257 struct ports_device *portdev;
258 struct port *port;
259 unsigned long flags;
260
261 spin_lock_irqsave(&pdrvdata_lock, flags);
262 list_for_each_entry(portdev, &pdrvdata.portdevs, list) {
263 port = find_port_by_devt_in_portdev(portdev, dev);
264 if (port)
265 goto out;
266 }
267 port = NULL;
268out:
269 spin_unlock_irqrestore(&pdrvdata_lock, flags);
270 return port;
271}
272
Amit Shah17634ba2009-12-21 21:03:25 +0530273static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
274{
275 struct port *port;
276 unsigned long flags;
277
278 spin_lock_irqsave(&portdev->ports_lock, flags);
279 list_for_each_entry(port, &portdev->ports, list)
280 if (port->id == id)
281 goto out;
282 port = NULL;
283out:
284 spin_unlock_irqrestore(&portdev->ports_lock, flags);
285
286 return port;
287}
288
Amit Shah203baab2010-01-18 19:15:12 +0530289static struct port *find_port_by_vq(struct ports_device *portdev,
290 struct virtqueue *vq)
291{
292 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530293 unsigned long flags;
294
Amit Shah17634ba2009-12-21 21:03:25 +0530295 spin_lock_irqsave(&portdev->ports_lock, flags);
296 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530297 if (port->in_vq == vq || port->out_vq == vq)
298 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530299 port = NULL;
300out:
Amit Shah17634ba2009-12-21 21:03:25 +0530301 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530302 return port;
303}
304
Amit Shah17634ba2009-12-21 21:03:25 +0530305static bool is_console_port(struct port *port)
306{
307 if (port->cons.hvc)
308 return true;
309 return false;
310}
311
312static inline bool use_multiport(struct ports_device *portdev)
313{
314 /*
315 * This condition can be true when put_chars is called from
316 * early_init
317 */
318 if (!portdev->vdev)
319 return 0;
320 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
321}
322
Amit Shahfdb9a052010-01-18 19:15:01 +0530323static void free_buf(struct port_buffer *buf)
324{
325 kfree(buf->buf);
326 kfree(buf);
327}
328
329static struct port_buffer *alloc_buf(size_t buf_size)
330{
331 struct port_buffer *buf;
332
333 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
334 if (!buf)
335 goto fail;
336 buf->buf = kzalloc(buf_size, GFP_KERNEL);
337 if (!buf->buf)
338 goto free_buf;
339 buf->len = 0;
340 buf->offset = 0;
341 buf->size = buf_size;
342 return buf;
343
344free_buf:
345 kfree(buf);
346fail:
347 return NULL;
348}
349
Amit Shaha3cde442010-01-18 19:15:03 +0530350/* Callers should take appropriate locks */
Amit Shahdefde662011-09-14 13:06:42 +0530351static struct port_buffer *get_inbuf(struct port *port)
Amit Shaha3cde442010-01-18 19:15:03 +0530352{
353 struct port_buffer *buf;
Amit Shaha3cde442010-01-18 19:15:03 +0530354 unsigned int len;
355
Amit Shahd25a9dd2011-09-14 13:06:43 +0530356 if (port->inbuf)
357 return port->inbuf;
358
359 buf = virtqueue_get_buf(port->in_vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530360 if (buf) {
361 buf->len = len;
362 buf->offset = 0;
363 }
364 return buf;
365}
366
Rusty Russella23ea922010-01-18 19:14:55 +0530367/*
Amit Shahe27b5192010-01-18 19:15:02 +0530368 * Create a scatter-gather list representing our input buffer and put
369 * it in the queue.
370 *
371 * Callers should take appropriate locks.
372 */
Amit Shah203baab2010-01-18 19:15:12 +0530373static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530374{
375 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530376 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530377
Amit Shahe27b5192010-01-18 19:15:02 +0530378 sg_init_one(sg, buf->buf, buf->size);
379
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300380 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
381 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530382 return ret;
383}
384
Amit Shah88f251a2009-12-21 22:15:30 +0530385/* Discard any unread data this port has. Callers lockers. */
386static void discard_port_data(struct port *port)
387{
388 struct port_buffer *buf;
389 struct virtqueue *vq;
390 unsigned int len;
Amit Shahd6933562010-02-12 10:32:18 +0530391 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530392
Amit Shahd7a62cd2011-03-04 14:04:33 +1030393 if (!port->portdev) {
394 /* Device has been unplugged. vqs are already gone. */
395 return;
396 }
Amit Shah88f251a2009-12-21 22:15:30 +0530397 vq = port->in_vq;
398 if (port->inbuf)
399 buf = port->inbuf;
400 else
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300401 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530402
Amit Shahd6933562010-02-12 10:32:18 +0530403 ret = 0;
404 while (buf) {
405 if (add_inbuf(vq, buf) < 0) {
406 ret++;
407 free_buf(buf);
408 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300409 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530410 }
Amit Shah88f251a2009-12-21 22:15:30 +0530411 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530412 if (ret)
413 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
414 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530415}
416
Amit Shah203baab2010-01-18 19:15:12 +0530417static bool port_has_data(struct port *port)
418{
419 unsigned long flags;
420 bool ret;
421
Amit Shahd6933562010-02-12 10:32:18 +0530422 ret = false;
Amit Shahd25a9dd2011-09-14 13:06:43 +0530423 spin_lock_irqsave(&port->inbuf_lock, flags);
424 port->inbuf = get_inbuf(port);
425 if (port->inbuf)
426 ret = true;
427
Amit Shah203baab2010-01-18 19:15:12 +0530428 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530429 return ret;
430}
431
Amit Shah3425e702010-05-19 22:15:46 -0600432static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
433 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530434{
435 struct scatterlist sg[1];
436 struct virtio_console_control cpkt;
437 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530438 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530439
Amit Shah3425e702010-05-19 22:15:46 -0600440 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530441 return 0;
442
Amit Shah3425e702010-05-19 22:15:46 -0600443 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530444 cpkt.event = event;
445 cpkt.value = value;
446
Amit Shah3425e702010-05-19 22:15:46 -0600447 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530448
449 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300450 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
451 virtqueue_kick(vq);
452 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530453 cpu_relax();
454 }
455 return 0;
456}
457
Amit Shah3425e702010-05-19 22:15:46 -0600458static ssize_t send_control_msg(struct port *port, unsigned int event,
459 unsigned int value)
460{
Amit Shah84ec06c2010-09-02 18:11:42 +0530461 /* Did the port get unplugged before userspace closed it? */
462 if (port->portdev)
463 return __send_control_msg(port->portdev, port->id, event, value);
464 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600465}
466
Amit Shahcdfadfc2010-05-19 22:15:50 -0600467/* Callers must take the port->outvq_lock */
468static void reclaim_consumed_buffers(struct port *port)
469{
470 void *buf;
471 unsigned int len;
472
Amit Shahd7a62cd2011-03-04 14:04:33 +1030473 if (!port->portdev) {
474 /* Device has been unplugged. vqs are already gone. */
475 return;
476 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600477 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
478 kfree(buf);
479 port->outvq_full = false;
480 }
481}
482
483static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
484 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530485{
486 struct scatterlist sg[1];
487 struct virtqueue *out_vq;
488 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600489 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530490 unsigned int len;
491
492 out_vq = port->out_vq;
493
Amit Shahcdfadfc2010-05-19 22:15:50 -0600494 spin_lock_irqsave(&port->outvq_lock, flags);
495
496 reclaim_consumed_buffers(port);
497
Amit Shahf997f00b2009-12-21 17:28:51 +0530498 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300499 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530500
501 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300502 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530503
504 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600505 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600506 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530507 }
508
Amit Shahcdfadfc2010-05-19 22:15:50 -0600509 if (ret == 0)
510 port->outvq_full = true;
511
512 if (nonblock)
513 goto done;
514
515 /*
516 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e2010-10-20 13:45:43 +1030517 * sent. This is done for data from the hvc_console; the tty
518 * operations are performed with spinlocks held so we can't
519 * sleep here. An alternative would be to copy the data to a
520 * buffer and relax the spinning requirement. The downside is
521 * we need to kmalloc a GFP_ATOMIC buffer each time the
522 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600523 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300524 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530525 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600526done:
527 spin_unlock_irqrestore(&port->outvq_lock, flags);
528 /*
529 * We're expected to return the amount of data we wrote -- all
530 * of it
531 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600532 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530533}
534
Amit Shah203baab2010-01-18 19:15:12 +0530535/*
536 * Give out the data that's requested from the buffer that we have
537 * queued up.
538 */
Amit Shahb766cee2009-12-21 21:26:45 +0530539static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
540 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530541{
542 struct port_buffer *buf;
543 unsigned long flags;
544
545 if (!out_count || !port_has_data(port))
546 return 0;
547
548 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530549 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530550
Amit Shahb766cee2009-12-21 21:26:45 +0530551 if (to_user) {
552 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530553
Amit Shahb766cee2009-12-21 21:26:45 +0530554 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
555 if (ret)
556 return -EFAULT;
557 } else {
558 memcpy(out_buf, buf->buf + buf->offset, out_count);
559 }
560
Amit Shah203baab2010-01-18 19:15:12 +0530561 buf->offset += out_count;
562
563 if (buf->offset == buf->len) {
564 /*
565 * We're done using all the data in this buffer.
566 * Re-queue so that the Host can send us more data.
567 */
568 spin_lock_irqsave(&port->inbuf_lock, flags);
569 port->inbuf = NULL;
570
571 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530572 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530573
574 spin_unlock_irqrestore(&port->inbuf_lock, flags);
575 }
Amit Shahb766cee2009-12-21 21:26:45 +0530576 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530577 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530578}
579
Amit Shah2030fa42009-12-21 21:49:30 +0530580/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600581static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530582{
Amit Shah3709ea72010-09-02 18:11:43 +0530583 if (!port->guest_connected) {
584 /* Port got hot-unplugged. Let's exit. */
585 return false;
586 }
Amit Shah60caacd2010-05-19 22:15:49 -0600587 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530588}
589
Amit Shahcdfadfc2010-05-19 22:15:50 -0600590static bool will_write_block(struct port *port)
591{
592 bool ret;
593
Amit Shah60e5e0b2010-05-27 13:24:40 +0530594 if (!port->guest_connected) {
595 /* Port got hot-unplugged. Let's exit. */
596 return false;
597 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600598 if (!port->host_connected)
599 return true;
600
601 spin_lock_irq(&port->outvq_lock);
602 /*
603 * Check if the Host has consumed any buffers since we last
604 * sent data (this is only applicable for nonblocking ports).
605 */
606 reclaim_consumed_buffers(port);
607 ret = port->outvq_full;
608 spin_unlock_irq(&port->outvq_lock);
609
610 return ret;
611}
612
Amit Shah2030fa42009-12-21 21:49:30 +0530613static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
614 size_t count, loff_t *offp)
615{
616 struct port *port;
617 ssize_t ret;
618
619 port = filp->private_data;
620
621 if (!port_has_data(port)) {
622 /*
623 * If nothing's connected on the host just return 0 in
624 * case of list_empty; this tells the userspace app
625 * that there's no connection
626 */
627 if (!port->host_connected)
628 return 0;
629 if (filp->f_flags & O_NONBLOCK)
630 return -EAGAIN;
631
Amit Shaha08fa922011-09-14 13:06:41 +0530632 ret = wait_event_freezable(port->waitqueue,
633 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530634 if (ret < 0)
635 return ret;
636 }
Amit Shahb3dddb92010-09-02 18:11:45 +0530637 /* Port got hot-unplugged. */
638 if (!port->guest_connected)
639 return -ENODEV;
Amit Shah2030fa42009-12-21 21:49:30 +0530640 /*
641 * We could've received a disconnection message while we were
642 * waiting for more data.
643 *
644 * This check is not clubbed in the if() statement above as we
645 * might receive some data as well as the host could get
646 * disconnected after we got woken up from our wait. So we
647 * really want to give off whatever data we have and only then
648 * check for host_connected.
649 */
650 if (!port_has_data(port) && !port->host_connected)
651 return 0;
652
653 return fill_readbuf(port, ubuf, count, true);
654}
655
656static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
657 size_t count, loff_t *offp)
658{
659 struct port *port;
660 char *buf;
661 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600662 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530663
Amit Shah65745422010-09-14 13:26:16 +0530664 /* Userspace could be out to fool us */
665 if (!count)
666 return 0;
667
Amit Shah2030fa42009-12-21 21:49:30 +0530668 port = filp->private_data;
669
Amit Shahcdfadfc2010-05-19 22:15:50 -0600670 nonblock = filp->f_flags & O_NONBLOCK;
671
672 if (will_write_block(port)) {
673 if (nonblock)
674 return -EAGAIN;
675
Amit Shaha08fa922011-09-14 13:06:41 +0530676 ret = wait_event_freezable(port->waitqueue,
677 !will_write_block(port));
Amit Shahcdfadfc2010-05-19 22:15:50 -0600678 if (ret < 0)
679 return ret;
680 }
Amit Shahf4028112010-09-02 18:11:46 +0530681 /* Port got hot-unplugged. */
682 if (!port->guest_connected)
683 return -ENODEV;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600684
Amit Shah2030fa42009-12-21 21:49:30 +0530685 count = min((size_t)(32 * 1024), count);
686
687 buf = kmalloc(count, GFP_KERNEL);
688 if (!buf)
689 return -ENOMEM;
690
691 ret = copy_from_user(buf, ubuf, count);
692 if (ret) {
693 ret = -EFAULT;
694 goto free_buf;
695 }
696
Amit Shah531295e2010-10-20 13:45:43 +1030697 /*
698 * We now ask send_buf() to not spin for generic ports -- we
699 * can re-use the same code path that non-blocking file
700 * descriptors take for blocking file descriptors since the
701 * wait is already done and we're certain the write will go
702 * through to the host.
703 */
704 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600705 ret = send_buf(port, buf, count, nonblock);
706
707 if (nonblock && ret > 0)
708 goto out;
709
Amit Shah2030fa42009-12-21 21:49:30 +0530710free_buf:
711 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600712out:
Amit Shah2030fa42009-12-21 21:49:30 +0530713 return ret;
714}
715
716static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
717{
718 struct port *port;
719 unsigned int ret;
720
721 port = filp->private_data;
722 poll_wait(filp, &port->waitqueue, wait);
723
Amit Shah8529a502010-09-02 18:11:44 +0530724 if (!port->guest_connected) {
725 /* Port got unplugged */
726 return POLLHUP;
727 }
Amit Shah2030fa42009-12-21 21:49:30 +0530728 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530729 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530730 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600731 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530732 ret |= POLLOUT;
733 if (!port->host_connected)
734 ret |= POLLHUP;
735
736 return ret;
737}
738
Amit Shahb353a6b2010-09-02 18:38:29 +0530739static void remove_port(struct kref *kref);
740
Amit Shah2030fa42009-12-21 21:49:30 +0530741static int port_fops_release(struct inode *inode, struct file *filp)
742{
743 struct port *port;
744
745 port = filp->private_data;
746
747 /* Notify host of port being closed */
748 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
749
Amit Shah88f251a2009-12-21 22:15:30 +0530750 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530751 port->guest_connected = false;
752
Amit Shah88f251a2009-12-21 22:15:30 +0530753 discard_port_data(port);
754
755 spin_unlock_irq(&port->inbuf_lock);
756
Amit Shahcdfadfc2010-05-19 22:15:50 -0600757 spin_lock_irq(&port->outvq_lock);
758 reclaim_consumed_buffers(port);
759 spin_unlock_irq(&port->outvq_lock);
760
Amit Shahb353a6b2010-09-02 18:38:29 +0530761 /*
762 * Locks aren't necessary here as a port can't be opened after
763 * unplug, and if a port isn't unplugged, a kref would already
764 * exist for the port. Plus, taking ports_lock here would
765 * create a dependency on other locks taken by functions
766 * inside remove_port if we're the last holder of the port,
767 * creating many problems.
768 */
769 kref_put(&port->kref, remove_port);
770
Amit Shah2030fa42009-12-21 21:49:30 +0530771 return 0;
772}
773
774static int port_fops_open(struct inode *inode, struct file *filp)
775{
776 struct cdev *cdev = inode->i_cdev;
777 struct port *port;
Amit Shah8ad37e82010-09-02 18:11:48 +0530778 int ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530779
Amit Shah04950cd2010-09-02 18:20:58 +0530780 port = find_port_by_devt(cdev->dev);
Amit Shah2030fa42009-12-21 21:49:30 +0530781 filp->private_data = port;
782
Amit Shahb353a6b2010-09-02 18:38:29 +0530783 /* Prevent against a port getting hot-unplugged at the same time */
784 spin_lock_irq(&port->portdev->ports_lock);
785 kref_get(&port->kref);
786 spin_unlock_irq(&port->portdev->ports_lock);
787
Amit Shah2030fa42009-12-21 21:49:30 +0530788 /*
789 * Don't allow opening of console port devices -- that's done
790 * via /dev/hvc
791 */
Amit Shah8ad37e82010-09-02 18:11:48 +0530792 if (is_console_port(port)) {
793 ret = -ENXIO;
794 goto out;
795 }
Amit Shah2030fa42009-12-21 21:49:30 +0530796
Amit Shah3c7969c2009-11-26 11:25:38 +0530797 /* Allow only one process to open a particular port at a time */
798 spin_lock_irq(&port->inbuf_lock);
799 if (port->guest_connected) {
800 spin_unlock_irq(&port->inbuf_lock);
Amit Shah8ad37e82010-09-02 18:11:48 +0530801 ret = -EMFILE;
802 goto out;
Amit Shah3c7969c2009-11-26 11:25:38 +0530803 }
804
805 port->guest_connected = true;
806 spin_unlock_irq(&port->inbuf_lock);
807
Amit Shahcdfadfc2010-05-19 22:15:50 -0600808 spin_lock_irq(&port->outvq_lock);
809 /*
810 * There might be a chance that we missed reclaiming a few
811 * buffers in the window of the port getting previously closed
812 * and opening now.
813 */
814 reclaim_consumed_buffers(port);
815 spin_unlock_irq(&port->outvq_lock);
816
Amit Shah299fb612010-09-16 14:43:09 +0530817 nonseekable_open(inode, filp);
818
Amit Shah2030fa42009-12-21 21:49:30 +0530819 /* Notify host of port being opened */
820 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
821
822 return 0;
Amit Shah8ad37e82010-09-02 18:11:48 +0530823out:
Amit Shahb353a6b2010-09-02 18:38:29 +0530824 kref_put(&port->kref, remove_port);
Amit Shah8ad37e82010-09-02 18:11:48 +0530825 return ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530826}
827
Amit Shah3eae0ad2010-09-02 18:47:52 +0530828static int port_fops_fasync(int fd, struct file *filp, int mode)
829{
830 struct port *port;
831
832 port = filp->private_data;
833 return fasync_helper(fd, filp, mode, &port->async_queue);
834}
835
Amit Shah2030fa42009-12-21 21:49:30 +0530836/*
837 * The file operations that we support: programs in the guest can open
838 * a console device, read from it, write to it, poll for data and
839 * close it. The devices are at
840 * /dev/vport<device number>p<port number>
841 */
842static const struct file_operations port_fops = {
843 .owner = THIS_MODULE,
844 .open = port_fops_open,
845 .read = port_fops_read,
846 .write = port_fops_write,
847 .poll = port_fops_poll,
848 .release = port_fops_release,
Amit Shah3eae0ad2010-09-02 18:47:52 +0530849 .fasync = port_fops_fasync,
Amit Shah299fb612010-09-16 14:43:09 +0530850 .llseek = no_llseek,
Amit Shah2030fa42009-12-21 21:49:30 +0530851};
852
Amit Shahe27b5192010-01-18 19:15:02 +0530853/*
Rusty Russella23ea922010-01-18 19:14:55 +0530854 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000855 *
Rusty Russella23ea922010-01-18 19:14:55 +0530856 * We turn the characters into a scatter-gather list, add it to the
857 * output queue and then kick the Host. Then we sit here waiting for
858 * it to finish: inefficient in theory, but in practice
859 * implementations will do it immediately (lguest's Launcher does).
860 */
Rusty Russell31610432007-10-22 11:03:39 +1000861static int put_chars(u32 vtermno, const char *buf, int count)
862{
Rusty Russell21206ed2010-01-18 19:15:00 +0530863 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530864
François Diakhaté162a6892010-03-23 18:23:15 +0530865 if (unlikely(early_put_chars))
866 return early_put_chars(vtermno, buf, count);
867
Amit Shah38edf582010-01-18 19:15:05 +0530868 port = find_port_by_vtermno(vtermno);
869 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600870 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000871
Amit Shahcdfadfc2010-05-19 22:15:50 -0600872 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000873}
874
Rusty Russella23ea922010-01-18 19:14:55 +0530875/*
Rusty Russella23ea922010-01-18 19:14:55 +0530876 * get_chars() is the callback from the hvc_console infrastructure
877 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000878 *
Amit Shah203baab2010-01-18 19:15:12 +0530879 * We call out to fill_readbuf that gets us the required data from the
880 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530881 */
Rusty Russell31610432007-10-22 11:03:39 +1000882static int get_chars(u32 vtermno, char *buf, int count)
883{
Rusty Russell21206ed2010-01-18 19:15:00 +0530884 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000885
Amit Shah6dc69f972010-05-19 22:15:47 -0600886 /* If we've not set up the port yet, we have no input to give. */
887 if (unlikely(early_put_chars))
888 return 0;
889
Amit Shah38edf582010-01-18 19:15:05 +0530890 port = find_port_by_vtermno(vtermno);
891 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600892 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530893
894 /* If we don't have an input queue yet, we can't get input. */
895 BUG_ON(!port->in_vq);
896
Amit Shahb766cee2009-12-21 21:26:45 +0530897 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000898}
Rusty Russell31610432007-10-22 11:03:39 +1000899
Amit Shahcb06e362010-01-18 19:15:08 +0530900static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100901{
Amit Shahcb06e362010-01-18 19:15:08 +0530902 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100903
Amit Shah2de16a42010-03-19 17:36:44 +0530904 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530905 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530906 return;
907
Amit Shahcb06e362010-01-18 19:15:08 +0530908 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530909 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
910 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100911}
912
Amit Shah38edf582010-01-18 19:15:05 +0530913/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200914static int notifier_add_vio(struct hvc_struct *hp, int data)
915{
Amit Shah38edf582010-01-18 19:15:05 +0530916 struct port *port;
917
918 port = find_port_by_vtermno(hp->vtermno);
919 if (!port)
920 return -EINVAL;
921
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200922 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530923 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100924
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200925 return 0;
926}
927
928static void notifier_del_vio(struct hvc_struct *hp, int data)
929{
930 hp->irq_requested = 0;
931}
932
Amit Shah17634ba2009-12-21 21:03:25 +0530933/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530934static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530935 .get_chars = get_chars,
936 .put_chars = put_chars,
937 .notifier_add = notifier_add_vio,
938 .notifier_del = notifier_del_vio,
939 .notifier_hangup = notifier_del_vio,
940};
941
942/*
943 * Console drivers are initialized very early so boot messages can go
944 * out, so we do things slightly differently from the generic virtio
945 * initialization of the net and block drivers.
946 *
947 * At this stage, the console is output-only. It's too early to set
948 * up a virtqueue, so we let the drivers do some boutique early-output
949 * thing.
950 */
951int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
952{
953 early_put_chars = put_chars;
954 return hvc_instantiate(0, 0, &hv_ops);
955}
956
Amit Shah17634ba2009-12-21 21:03:25 +0530957int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530958{
959 int ret;
960
961 /*
962 * The Host's telling us this port is a console port. Hook it
963 * up with an hvc console.
964 *
965 * To set up and manage our virtual console, we call
966 * hvc_alloc().
967 *
968 * The first argument of hvc_alloc() is the virtual console
969 * number. The second argument is the parameter for the
970 * notification mechanism (like irq number). We currently
971 * leave this as zero, virtqueues have implicit notifications.
972 *
973 * The third argument is a "struct hv_ops" containing the
974 * put_chars() get_chars(), notifier_add() and notifier_del()
975 * pointers. The final argument is the output buffer size: we
976 * can do any size, so we put PAGE_SIZE here.
977 */
978 port->cons.vtermno = pdrvdata.next_vtermno;
979
980 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
981 if (IS_ERR(port->cons.hvc)) {
982 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530983 dev_err(port->dev,
984 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530985 port->cons.hvc = NULL;
986 return ret;
987 }
988 spin_lock_irq(&pdrvdata_lock);
989 pdrvdata.next_vtermno++;
990 list_add_tail(&port->cons.list, &pdrvdata.consoles);
991 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530992 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530993
Amit Shah1d051602010-05-19 22:15:49 -0600994 /*
995 * Start using the new console output if this is the first
996 * console to come up.
997 */
998 if (early_put_chars)
999 early_put_chars = NULL;
1000
Amit Shah2030fa42009-12-21 21:49:30 +05301001 /* Notify host of port being opened */
1002 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
1003
Amit Shahcfa6d372010-01-18 19:15:10 +05301004 return 0;
1005}
1006
Amit Shah431edb82009-12-21 21:57:40 +05301007static ssize_t show_port_name(struct device *dev,
1008 struct device_attribute *attr, char *buffer)
1009{
1010 struct port *port;
1011
1012 port = dev_get_drvdata(dev);
1013
1014 return sprintf(buffer, "%s\n", port->name);
1015}
1016
1017static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
1018
1019static struct attribute *port_sysfs_entries[] = {
1020 &dev_attr_name.attr,
1021 NULL
1022};
1023
1024static struct attribute_group port_attribute_group = {
1025 .name = NULL, /* put in device directory */
1026 .attrs = port_sysfs_entries,
1027};
1028
Amit Shahd99393e2009-12-21 22:36:21 +05301029static int debugfs_open(struct inode *inode, struct file *filp)
1030{
1031 filp->private_data = inode->i_private;
1032 return 0;
1033}
1034
1035static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
1036 size_t count, loff_t *offp)
1037{
1038 struct port *port;
1039 char *buf;
1040 ssize_t ret, out_offset, out_count;
1041
1042 out_count = 1024;
1043 buf = kmalloc(out_count, GFP_KERNEL);
1044 if (!buf)
1045 return -ENOMEM;
1046
1047 port = filp->private_data;
1048 out_offset = 0;
1049 out_offset += snprintf(buf + out_offset, out_count,
1050 "name: %s\n", port->name ? port->name : "");
1051 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1052 "guest_connected: %d\n", port->guest_connected);
1053 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1054 "host_connected: %d\n", port->host_connected);
1055 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahcdfadfc2010-05-19 22:15:50 -06001056 "outvq_full: %d\n", port->outvq_full);
1057 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahd99393e2009-12-21 22:36:21 +05301058 "is_console: %s\n",
1059 is_console_port(port) ? "yes" : "no");
1060 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1061 "console_vtermno: %u\n", port->cons.vtermno);
1062
1063 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
1064 kfree(buf);
1065 return ret;
1066}
1067
1068static const struct file_operations port_debugfs_ops = {
1069 .owner = THIS_MODULE,
1070 .open = debugfs_open,
1071 .read = debugfs_read,
1072};
1073
Amit Shah97788292010-05-06 02:05:08 +05301074static void set_console_size(struct port *port, u16 rows, u16 cols)
1075{
1076 if (!port || !is_console_port(port))
1077 return;
1078
1079 port->cons.ws.ws_row = rows;
1080 port->cons.ws.ws_col = cols;
1081}
1082
Amit Shahc446f8f2010-05-19 22:15:48 -06001083static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
1084{
1085 struct port_buffer *buf;
1086 unsigned int nr_added_bufs;
1087 int ret;
1088
1089 nr_added_bufs = 0;
1090 do {
1091 buf = alloc_buf(PAGE_SIZE);
1092 if (!buf)
1093 break;
1094
1095 spin_lock_irq(lock);
1096 ret = add_inbuf(vq, buf);
1097 if (ret < 0) {
1098 spin_unlock_irq(lock);
1099 free_buf(buf);
1100 break;
1101 }
1102 nr_added_bufs++;
1103 spin_unlock_irq(lock);
1104 } while (ret > 0);
1105
1106 return nr_added_bufs;
1107}
1108
Amit Shah3eae0ad2010-09-02 18:47:52 +05301109static void send_sigio_to_port(struct port *port)
1110{
1111 if (port->async_queue && port->guest_connected)
1112 kill_fasync(&port->async_queue, SIGIO, POLL_OUT);
1113}
1114
Amit Shahc446f8f2010-05-19 22:15:48 -06001115static int add_port(struct ports_device *portdev, u32 id)
1116{
1117 char debugfs_name[16];
1118 struct port *port;
1119 struct port_buffer *buf;
1120 dev_t devt;
1121 unsigned int nr_added_bufs;
1122 int err;
1123
1124 port = kmalloc(sizeof(*port), GFP_KERNEL);
1125 if (!port) {
1126 err = -ENOMEM;
1127 goto fail;
1128 }
Amit Shahb353a6b2010-09-02 18:38:29 +05301129 kref_init(&port->kref);
Amit Shahc446f8f2010-05-19 22:15:48 -06001130
1131 port->portdev = portdev;
1132 port->id = id;
1133
1134 port->name = NULL;
1135 port->inbuf = NULL;
1136 port->cons.hvc = NULL;
Amit Shah3eae0ad2010-09-02 18:47:52 +05301137 port->async_queue = NULL;
Amit Shahc446f8f2010-05-19 22:15:48 -06001138
Amit Shah97788292010-05-06 02:05:08 +05301139 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
1140
Amit Shahc446f8f2010-05-19 22:15:48 -06001141 port->host_connected = port->guest_connected = false;
1142
Amit Shahcdfadfc2010-05-19 22:15:50 -06001143 port->outvq_full = false;
1144
Amit Shahc446f8f2010-05-19 22:15:48 -06001145 port->in_vq = portdev->in_vqs[port->id];
1146 port->out_vq = portdev->out_vqs[port->id];
1147
Amit Shahd22a6982010-09-02 18:20:59 +05301148 port->cdev = cdev_alloc();
1149 if (!port->cdev) {
1150 dev_err(&port->portdev->vdev->dev, "Error allocating cdev\n");
1151 err = -ENOMEM;
1152 goto free_port;
1153 }
1154 port->cdev->ops = &port_fops;
Amit Shahc446f8f2010-05-19 22:15:48 -06001155
1156 devt = MKDEV(portdev->chr_major, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301157 err = cdev_add(port->cdev, devt, 1);
Amit Shahc446f8f2010-05-19 22:15:48 -06001158 if (err < 0) {
1159 dev_err(&port->portdev->vdev->dev,
1160 "Error %d adding cdev for port %u\n", err, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301161 goto free_cdev;
Amit Shahc446f8f2010-05-19 22:15:48 -06001162 }
1163 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1164 devt, port, "vport%up%u",
1165 port->portdev->drv_index, id);
1166 if (IS_ERR(port->dev)) {
1167 err = PTR_ERR(port->dev);
1168 dev_err(&port->portdev->vdev->dev,
1169 "Error %d creating device for port %u\n",
1170 err, id);
1171 goto free_cdev;
1172 }
1173
1174 spin_lock_init(&port->inbuf_lock);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001175 spin_lock_init(&port->outvq_lock);
Amit Shahc446f8f2010-05-19 22:15:48 -06001176 init_waitqueue_head(&port->waitqueue);
1177
1178 /* Fill the in_vq with buffers so the host can send us data. */
1179 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1180 if (!nr_added_bufs) {
1181 dev_err(port->dev, "Error allocating inbufs\n");
1182 err = -ENOMEM;
1183 goto free_device;
1184 }
1185
1186 /*
1187 * If we're not using multiport support, this has to be a console port
1188 */
1189 if (!use_multiport(port->portdev)) {
1190 err = init_port_console(port);
1191 if (err)
1192 goto free_inbufs;
1193 }
1194
1195 spin_lock_irq(&portdev->ports_lock);
1196 list_add_tail(&port->list, &port->portdev->ports);
1197 spin_unlock_irq(&portdev->ports_lock);
1198
1199 /*
1200 * Tell the Host we're set so that it can send us various
1201 * configuration parameters for this port (eg, port name,
1202 * caching, whether this is a console port, etc.)
1203 */
1204 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1205
1206 if (pdrvdata.debugfs_dir) {
1207 /*
1208 * Finally, create the debugfs file that we can use to
1209 * inspect a port's state at any time
1210 */
1211 sprintf(debugfs_name, "vport%up%u",
1212 port->portdev->drv_index, id);
1213 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1214 pdrvdata.debugfs_dir,
1215 port,
1216 &port_debugfs_ops);
1217 }
1218 return 0;
1219
1220free_inbufs:
1221 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1222 free_buf(buf);
1223free_device:
1224 device_destroy(pdrvdata.class, port->dev->devt);
1225free_cdev:
Amit Shahd22a6982010-09-02 18:20:59 +05301226 cdev_del(port->cdev);
Amit Shahc446f8f2010-05-19 22:15:48 -06001227free_port:
1228 kfree(port);
1229fail:
1230 /* The host might want to notify management sw about port add failure */
Julia Lawall0643e4c2010-05-15 11:45:53 +02001231 __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shahc446f8f2010-05-19 22:15:48 -06001232 return err;
1233}
1234
Amit Shahb353a6b2010-09-02 18:38:29 +05301235/* No users remain, remove all port-specific data. */
1236static void remove_port(struct kref *kref)
1237{
1238 struct port *port;
1239
1240 port = container_of(kref, struct port, kref);
1241
1242 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1243 device_destroy(pdrvdata.class, port->dev->devt);
1244 cdev_del(port->cdev);
1245
1246 kfree(port->name);
1247
1248 debugfs_remove(port->debugfs_file);
1249
1250 kfree(port);
1251}
1252
1253/*
1254 * Port got unplugged. Remove port from portdev's list and drop the
1255 * kref reference. If no userspace has this port opened, it will
1256 * result in immediate removal the port.
1257 */
1258static void unplug_port(struct port *port)
Amit Shah1f7aa422009-12-21 22:27:31 +05301259{
Amit Shaha9cdd482010-02-12 10:32:15 +05301260 struct port_buffer *buf;
1261
Amit Shahb353a6b2010-09-02 18:38:29 +05301262 spin_lock_irq(&port->portdev->ports_lock);
1263 list_del(&port->list);
1264 spin_unlock_irq(&port->portdev->ports_lock);
1265
Amit Shah00476342010-05-27 13:24:39 +05301266 if (port->guest_connected) {
1267 port->guest_connected = false;
1268 port->host_connected = false;
1269 wake_up_interruptible(&port->waitqueue);
Amit Shaha461e112010-09-02 18:47:54 +05301270
1271 /* Let the app know the port is going down. */
1272 send_sigio_to_port(port);
Amit Shah00476342010-05-27 13:24:39 +05301273 }
1274
Amit Shah1f7aa422009-12-21 22:27:31 +05301275 if (is_console_port(port)) {
1276 spin_lock_irq(&pdrvdata_lock);
1277 list_del(&port->cons.list);
1278 spin_unlock_irq(&pdrvdata_lock);
1279 hvc_remove(port->cons.hvc);
1280 }
Amit Shah1f7aa422009-12-21 22:27:31 +05301281
Amit Shaha9cdd482010-02-12 10:32:15 +05301282 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +05301283 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301284
Amit Shahcdfadfc2010-05-19 22:15:50 -06001285 reclaim_consumed_buffers(port);
1286
Amit Shaha9cdd482010-02-12 10:32:15 +05301287 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001288 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +05301289 free_buf(buf);
1290
Amit Shahb353a6b2010-09-02 18:38:29 +05301291 /*
1292 * We should just assume the device itself has gone off --
1293 * else a close on an open port later will try to send out a
1294 * control message.
1295 */
1296 port->portdev = NULL;
Amit Shah1f7aa422009-12-21 22:27:31 +05301297
Amit Shahb353a6b2010-09-02 18:38:29 +05301298 /*
1299 * Locks around here are not necessary - a port can't be
1300 * opened after we removed the port struct from ports_list
1301 * above.
1302 */
1303 kref_put(&port->kref, remove_port);
Amit Shah1f7aa422009-12-21 22:27:31 +05301304}
1305
Amit Shah17634ba2009-12-21 21:03:25 +05301306/* Any private messages that the Host and Guest want to share */
1307static void handle_control_message(struct ports_device *portdev,
1308 struct port_buffer *buf)
1309{
1310 struct virtio_console_control *cpkt;
1311 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301312 size_t name_size;
1313 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301314
1315 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1316
1317 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001318 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301319 /* No valid header at start of buffer. Drop it. */
1320 dev_dbg(&portdev->vdev->dev,
1321 "Invalid index %u in control packet\n", cpkt->id);
1322 return;
1323 }
1324
1325 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001326 case VIRTIO_CONSOLE_PORT_ADD:
1327 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001328 dev_dbg(&portdev->vdev->dev,
1329 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001330 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1331 break;
1332 }
1333 if (cpkt->id >= portdev->config.max_nr_ports) {
1334 dev_warn(&portdev->vdev->dev,
1335 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1336 cpkt->id, portdev->config.max_nr_ports - 1);
1337 break;
1338 }
1339 add_port(portdev, cpkt->id);
1340 break;
1341 case VIRTIO_CONSOLE_PORT_REMOVE:
Amit Shahb353a6b2010-09-02 18:38:29 +05301342 unplug_port(port);
Amit Shahf909f852010-05-19 22:15:48 -06001343 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301344 case VIRTIO_CONSOLE_CONSOLE_PORT:
1345 if (!cpkt->value)
1346 break;
1347 if (is_console_port(port))
1348 break;
1349
1350 init_port_console(port);
1351 /*
1352 * Could remove the port here in case init fails - but
1353 * have to notify the host first.
1354 */
1355 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301356 case VIRTIO_CONSOLE_RESIZE: {
1357 struct {
1358 __u16 rows;
1359 __u16 cols;
1360 } size;
1361
Amit Shah17634ba2009-12-21 21:03:25 +05301362 if (!is_console_port(port))
1363 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301364
1365 memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt),
1366 sizeof(size));
1367 set_console_size(port, size.rows, size.cols);
1368
Amit Shah17634ba2009-12-21 21:03:25 +05301369 port->cons.hvc->irq_requested = 1;
1370 resize_console(port);
1371 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301372 }
Amit Shah2030fa42009-12-21 21:49:30 +05301373 case VIRTIO_CONSOLE_PORT_OPEN:
1374 port->host_connected = cpkt->value;
1375 wake_up_interruptible(&port->waitqueue);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001376 /*
1377 * If the host port got closed and the host had any
1378 * unconsumed buffers, we'll be able to reclaim them
1379 * now.
1380 */
1381 spin_lock_irq(&port->outvq_lock);
1382 reclaim_consumed_buffers(port);
1383 spin_unlock_irq(&port->outvq_lock);
Amit Shah3eae0ad2010-09-02 18:47:52 +05301384
1385 /*
1386 * If the guest is connected, it'll be interested in
1387 * knowing the host connection state changed.
1388 */
1389 send_sigio_to_port(port);
Amit Shah2030fa42009-12-21 21:49:30 +05301390 break;
Amit Shah431edb82009-12-21 21:57:40 +05301391 case VIRTIO_CONSOLE_PORT_NAME:
1392 /*
Amit Shah291024e2011-09-14 13:06:40 +05301393 * If we woke up after hibernation, we can get this
1394 * again. Skip it in that case.
1395 */
1396 if (port->name)
1397 break;
1398
1399 /*
Amit Shah431edb82009-12-21 21:57:40 +05301400 * Skip the size of the header and the cpkt to get the size
1401 * of the name that was sent
1402 */
1403 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1404
1405 port->name = kmalloc(name_size, GFP_KERNEL);
1406 if (!port->name) {
1407 dev_err(port->dev,
1408 "Not enough space to store port name\n");
1409 break;
1410 }
1411 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1412 name_size - 1);
1413 port->name[name_size - 1] = 0;
1414
1415 /*
1416 * Since we only have one sysfs attribute, 'name',
1417 * create it only if we have a name for the port.
1418 */
1419 err = sysfs_create_group(&port->dev->kobj,
1420 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301421 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301422 dev_err(port->dev,
1423 "Error %d creating sysfs device attributes\n",
1424 err);
Amit Shahec642132010-03-19 17:36:43 +05301425 } else {
1426 /*
1427 * Generate a udev event so that appropriate
1428 * symlinks can be created based on udev
1429 * rules.
1430 */
1431 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1432 }
Amit Shah431edb82009-12-21 21:57:40 +05301433 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301434 }
1435}
1436
1437static void control_work_handler(struct work_struct *work)
1438{
1439 struct ports_device *portdev;
1440 struct virtqueue *vq;
1441 struct port_buffer *buf;
1442 unsigned int len;
1443
1444 portdev = container_of(work, struct ports_device, control_work);
1445 vq = portdev->c_ivq;
1446
1447 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001448 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301449 spin_unlock(&portdev->cvq_lock);
1450
1451 buf->len = len;
1452 buf->offset = 0;
1453
1454 handle_control_message(portdev, buf);
1455
1456 spin_lock(&portdev->cvq_lock);
1457 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1458 dev_warn(&portdev->vdev->dev,
1459 "Error adding buffer to queue\n");
1460 free_buf(buf);
1461 }
1462 }
1463 spin_unlock(&portdev->cvq_lock);
1464}
1465
Amit Shah2770c5e2011-01-31 13:06:36 +05301466static void out_intr(struct virtqueue *vq)
1467{
1468 struct port *port;
1469
1470 port = find_port_by_vq(vq->vdev->priv, vq);
1471 if (!port)
1472 return;
1473
1474 wake_up_interruptible(&port->waitqueue);
1475}
1476
Amit Shah17634ba2009-12-21 21:03:25 +05301477static void in_intr(struct virtqueue *vq)
1478{
1479 struct port *port;
1480 unsigned long flags;
1481
1482 port = find_port_by_vq(vq->vdev->priv, vq);
1483 if (!port)
1484 return;
1485
1486 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd25a9dd2011-09-14 13:06:43 +05301487 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301488
Amit Shah88f251a2009-12-21 22:15:30 +05301489 /*
1490 * Don't queue up data when port is closed. This condition
1491 * can be reached when a console port is not yet connected (no
1492 * tty is spawned) and the host sends out data to console
1493 * ports. For generic serial ports, the host won't
1494 * (shouldn't) send data till the guest is connected.
1495 */
1496 if (!port->guest_connected)
1497 discard_port_data(port);
1498
Amit Shah17634ba2009-12-21 21:03:25 +05301499 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1500
Amit Shah2030fa42009-12-21 21:49:30 +05301501 wake_up_interruptible(&port->waitqueue);
1502
Amit Shah55f6bcc2010-09-02 18:47:53 +05301503 /* Send a SIGIO indicating new data in case the process asked for it */
1504 send_sigio_to_port(port);
1505
Amit Shah17634ba2009-12-21 21:03:25 +05301506 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1507 hvc_kick();
1508}
1509
1510static void control_intr(struct virtqueue *vq)
1511{
1512 struct ports_device *portdev;
1513
1514 portdev = vq->vdev->priv;
1515 schedule_work(&portdev->control_work);
1516}
1517
Amit Shah7f5d8102009-12-21 22:22:08 +05301518static void config_intr(struct virtio_device *vdev)
1519{
1520 struct ports_device *portdev;
1521
1522 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001523
Amit Shah4038f5b72010-05-06 02:05:07 +05301524 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301525 struct port *port;
1526 u16 rows, cols;
1527
1528 vdev->config->get(vdev,
1529 offsetof(struct virtio_console_config, cols),
1530 &cols, sizeof(u16));
1531 vdev->config->get(vdev,
1532 offsetof(struct virtio_console_config, rows),
1533 &rows, sizeof(u16));
1534
1535 port = find_port_by_id(portdev, 0);
1536 set_console_size(port, rows, cols);
1537
Amit Shah4038f5b72010-05-06 02:05:07 +05301538 /*
1539 * We'll use this way of resizing only for legacy
1540 * support. For newer userspace
1541 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1542 * to indicate console size changes so that it can be
1543 * done per-port.
1544 */
Amit Shah97788292010-05-06 02:05:08 +05301545 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301546 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301547}
1548
Amit Shah2658a79a2010-01-18 19:15:11 +05301549static int init_vqs(struct ports_device *portdev)
1550{
1551 vq_callback_t **io_callbacks;
1552 char **io_names;
1553 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301554 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a79a2010-01-18 19:15:11 +05301555 int err;
1556
Amit Shah17634ba2009-12-21 21:03:25 +05301557 nr_ports = portdev->config.max_nr_ports;
1558 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301559
1560 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301561 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301562 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301563 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1564 GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301565 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1566 GFP_KERNEL);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001567 if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs ||
Amit Shah286f9a22011-09-14 13:06:39 +05301568 !portdev->out_vqs) {
Amit Shah2658a79a2010-01-18 19:15:11 +05301569 err = -ENOMEM;
Jiri Slaby22e132f2010-11-06 10:06:50 +01001570 goto free;
Amit Shah2658a79a2010-01-18 19:15:11 +05301571 }
1572
Amit Shah17634ba2009-12-21 21:03:25 +05301573 /*
1574 * For backward compat (newer host but older guest), the host
1575 * spawns a console port first and also inits the vqs for port
1576 * 0 before others.
1577 */
1578 j = 0;
1579 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301580 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301581 io_names[j] = "input";
1582 io_names[j + 1] = "output";
1583 j += 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301584
Amit Shah17634ba2009-12-21 21:03:25 +05301585 if (use_multiport(portdev)) {
1586 io_callbacks[j] = control_intr;
1587 io_callbacks[j + 1] = NULL;
1588 io_names[j] = "control-i";
1589 io_names[j + 1] = "control-o";
1590
1591 for (i = 1; i < nr_ports; i++) {
1592 j += 2;
1593 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301594 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301595 io_names[j] = "input";
1596 io_names[j + 1] = "output";
1597 }
1598 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301599 /* Find the queues. */
1600 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1601 io_callbacks,
1602 (const char **)io_names);
1603 if (err)
Jiri Slaby22e132f2010-11-06 10:06:50 +01001604 goto free;
Amit Shah2658a79a2010-01-18 19:15:11 +05301605
Amit Shah17634ba2009-12-21 21:03:25 +05301606 j = 0;
Amit Shah2658a79a2010-01-18 19:15:11 +05301607 portdev->in_vqs[0] = vqs[0];
1608 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301609 j += 2;
1610 if (use_multiport(portdev)) {
1611 portdev->c_ivq = vqs[j];
1612 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a79a2010-01-18 19:15:11 +05301613
Amit Shah17634ba2009-12-21 21:03:25 +05301614 for (i = 1; i < nr_ports; i++) {
1615 j += 2;
1616 portdev->in_vqs[i] = vqs[j];
1617 portdev->out_vqs[i] = vqs[j + 1];
1618 }
1619 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301620 kfree(io_names);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001621 kfree(io_callbacks);
Amit Shah2658a79a2010-01-18 19:15:11 +05301622 kfree(vqs);
1623
1624 return 0;
1625
Jiri Slaby22e132f2010-11-06 10:06:50 +01001626free:
Amit Shah2658a79a2010-01-18 19:15:11 +05301627 kfree(portdev->out_vqs);
Amit Shah2658a79a2010-01-18 19:15:11 +05301628 kfree(portdev->in_vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001629 kfree(io_names);
1630 kfree(io_callbacks);
Amit Shah2658a79a2010-01-18 19:15:11 +05301631 kfree(vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001632
Amit Shah2658a79a2010-01-18 19:15:11 +05301633 return err;
1634}
1635
Amit Shahfb08bd22009-12-21 21:36:04 +05301636static const struct file_operations portdev_fops = {
1637 .owner = THIS_MODULE,
1638};
1639
Amit Shah1c85bf32010-01-18 19:15:07 +05301640/*
1641 * Once we're further in boot, we get probed like any other virtio
1642 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301643 *
1644 * If the host also supports multiple console ports, we check the
1645 * config space to see how many ports the host has spawned. We
1646 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301647 */
1648static int __devinit virtcons_probe(struct virtio_device *vdev)
1649{
Amit Shah1c85bf32010-01-18 19:15:07 +05301650 struct ports_device *portdev;
1651 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301652 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301653
1654 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1655 if (!portdev) {
1656 err = -ENOMEM;
1657 goto fail;
1658 }
1659
1660 /* Attach this portdev to this virtio_device, and vice-versa. */
1661 portdev->vdev = vdev;
1662 vdev->priv = portdev;
1663
Amit Shahfb08bd22009-12-21 21:36:04 +05301664 spin_lock_irq(&pdrvdata_lock);
1665 portdev->drv_index = pdrvdata.index++;
1666 spin_unlock_irq(&pdrvdata_lock);
1667
1668 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1669 &portdev_fops);
1670 if (portdev->chr_major < 0) {
1671 dev_err(&vdev->dev,
1672 "Error %d registering chrdev for device %u\n",
1673 portdev->chr_major, portdev->drv_index);
1674 err = portdev->chr_major;
1675 goto free;
1676 }
1677
Amit Shah17634ba2009-12-21 21:03:25 +05301678 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301679 portdev->config.max_nr_ports = 1;
Sasha Levin51c6d612011-08-14 17:52:31 +03001680 if (virtio_config_val(vdev, VIRTIO_CONSOLE_F_MULTIPORT,
1681 offsetof(struct virtio_console_config,
1682 max_nr_ports),
1683 &portdev->config.max_nr_ports) == 0)
Amit Shah17634ba2009-12-21 21:03:25 +05301684 multiport = true;
Amit Shah17634ba2009-12-21 21:03:25 +05301685
Amit Shah2658a79a2010-01-18 19:15:11 +05301686 err = init_vqs(portdev);
1687 if (err < 0) {
1688 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301689 goto free_chrdev;
Amit Shah2658a79a2010-01-18 19:15:11 +05301690 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301691
Amit Shah17634ba2009-12-21 21:03:25 +05301692 spin_lock_init(&portdev->ports_lock);
1693 INIT_LIST_HEAD(&portdev->ports);
1694
1695 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301696 unsigned int nr_added_bufs;
1697
Amit Shah17634ba2009-12-21 21:03:25 +05301698 spin_lock_init(&portdev->cvq_lock);
1699 INIT_WORK(&portdev->control_work, &control_work_handler);
1700
Amit Shah335a64a5c2010-02-24 10:37:44 +05301701 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1702 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301703 dev_err(&vdev->dev,
1704 "Error allocating buffers for control queue\n");
1705 err = -ENOMEM;
1706 goto free_vqs;
1707 }
Amit Shah1d051602010-05-19 22:15:49 -06001708 } else {
1709 /*
1710 * For backward compatibility: Create a console port
1711 * if we're running on older host.
1712 */
1713 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301714 }
1715
Amit Shah6bdf2af2010-09-02 18:11:49 +05301716 spin_lock_irq(&pdrvdata_lock);
1717 list_add_tail(&portdev->list, &pdrvdata.portdevs);
1718 spin_unlock_irq(&pdrvdata_lock);
1719
Amit Shahf909f852010-05-19 22:15:48 -06001720 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1721 VIRTIO_CONSOLE_DEVICE_READY, 1);
Rusty Russell31610432007-10-22 11:03:39 +10001722 return 0;
1723
Amit Shah22a29ea2010-02-12 10:32:17 +05301724free_vqs:
Julia Lawall0643e4c2010-05-15 11:45:53 +02001725 /* The host might want to notify mgmt sw about device add failure */
1726 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1727 VIRTIO_CONSOLE_DEVICE_READY, 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301728 vdev->config->del_vqs(vdev);
1729 kfree(portdev->in_vqs);
1730 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301731free_chrdev:
1732 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001733free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301734 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001735fail:
1736 return err;
1737}
1738
Amit Shah71778762010-02-12 10:32:16 +05301739static void virtcons_remove(struct virtio_device *vdev)
1740{
1741 struct ports_device *portdev;
1742 struct port *port, *port2;
Amit Shah71778762010-02-12 10:32:16 +05301743
1744 portdev = vdev->priv;
1745
Amit Shah6bdf2af2010-09-02 18:11:49 +05301746 spin_lock_irq(&pdrvdata_lock);
1747 list_del(&portdev->list);
1748 spin_unlock_irq(&pdrvdata_lock);
1749
Amit Shah02238952010-09-02 18:11:40 +05301750 /* Disable interrupts for vqs */
1751 vdev->config->reset(vdev);
1752 /* Finish up work that's lined up */
Amit Shah71778762010-02-12 10:32:16 +05301753 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301754
1755 list_for_each_entry_safe(port, port2, &portdev->ports, list)
Amit Shahb353a6b2010-09-02 18:38:29 +05301756 unplug_port(port);
Amit Shah71778762010-02-12 10:32:16 +05301757
1758 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1759
Amit Shahe0620132010-09-02 18:38:30 +05301760 /*
1761 * When yanking out a device, we immediately lose the
1762 * (device-side) queues. So there's no point in keeping the
1763 * guest side around till we drop our final reference. This
1764 * also means that any ports which are in an open state will
1765 * have to just stop using the port, as the vqs are going
1766 * away.
1767 */
Amit Shah96eb8722010-09-02 18:11:41 +05301768 if (use_multiport(portdev)) {
1769 struct port_buffer *buf;
1770 unsigned int len;
Amit Shah71778762010-02-12 10:32:16 +05301771
Amit Shah96eb8722010-09-02 18:11:41 +05301772 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1773 free_buf(buf);
1774
1775 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1776 free_buf(buf);
1777 }
Amit Shah71778762010-02-12 10:32:16 +05301778
1779 vdev->config->del_vqs(vdev);
1780 kfree(portdev->in_vqs);
1781 kfree(portdev->out_vqs);
1782
1783 kfree(portdev);
1784}
1785
Rusty Russell31610432007-10-22 11:03:39 +10001786static struct virtio_device_id id_table[] = {
1787 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1788 { 0 },
1789};
1790
Christian Borntraegerc2983452008-11-25 13:36:26 +01001791static unsigned int features[] = {
1792 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001793 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001794};
1795
Rusty Russell31610432007-10-22 11:03:39 +10001796static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001797 .feature_table = features,
1798 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001799 .driver.name = KBUILD_MODNAME,
1800 .driver.owner = THIS_MODULE,
1801 .id_table = id_table,
1802 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301803 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301804 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001805};
1806
1807static int __init init(void)
1808{
Amit Shahfb08bd22009-12-21 21:36:04 +05301809 int err;
1810
1811 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1812 if (IS_ERR(pdrvdata.class)) {
1813 err = PTR_ERR(pdrvdata.class);
1814 pr_err("Error %d creating virtio-ports class\n", err);
1815 return err;
1816 }
Amit Shahd99393e2009-12-21 22:36:21 +05301817
1818 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1819 if (!pdrvdata.debugfs_dir) {
1820 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1821 PTR_ERR(pdrvdata.debugfs_dir));
1822 }
Amit Shah38edf582010-01-18 19:15:05 +05301823 INIT_LIST_HEAD(&pdrvdata.consoles);
Amit Shah6bdf2af2010-09-02 18:11:49 +05301824 INIT_LIST_HEAD(&pdrvdata.portdevs);
Amit Shah38edf582010-01-18 19:15:05 +05301825
Rusty Russell31610432007-10-22 11:03:39 +10001826 return register_virtio_driver(&virtio_console);
1827}
Amit Shah71778762010-02-12 10:32:16 +05301828
1829static void __exit fini(void)
1830{
1831 unregister_virtio_driver(&virtio_console);
1832
1833 class_destroy(pdrvdata.class);
1834 if (pdrvdata.debugfs_dir)
1835 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1836}
Rusty Russell31610432007-10-22 11:03:39 +10001837module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301838module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001839
1840MODULE_DEVICE_TABLE(virtio, id_table);
1841MODULE_DESCRIPTION("Virtio console driver");
1842MODULE_LICENSE("GPL");