blob: 3516aeb7f06cf8b901fb68a9e3552c1d2d69acbf [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;
354 struct virtqueue *vq;
355 unsigned int len;
356
357 vq = port->in_vq;
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300358 buf = virtqueue_get_buf(vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530359 if (buf) {
360 buf->len = len;
361 buf->offset = 0;
362 }
363 return buf;
364}
365
Rusty Russella23ea922010-01-18 19:14:55 +0530366/*
Amit Shahe27b5192010-01-18 19:15:02 +0530367 * Create a scatter-gather list representing our input buffer and put
368 * it in the queue.
369 *
370 * Callers should take appropriate locks.
371 */
Amit Shah203baab2010-01-18 19:15:12 +0530372static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530373{
374 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530375 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530376
Amit Shahe27b5192010-01-18 19:15:02 +0530377 sg_init_one(sg, buf->buf, buf->size);
378
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300379 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
380 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530381 return ret;
382}
383
Amit Shah88f251a2009-12-21 22:15:30 +0530384/* Discard any unread data this port has. Callers lockers. */
385static void discard_port_data(struct port *port)
386{
387 struct port_buffer *buf;
388 struct virtqueue *vq;
389 unsigned int len;
Amit Shahd6933562010-02-12 10:32:18 +0530390 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530391
Amit Shahd7a62cd2011-03-04 14:04:33 +1030392 if (!port->portdev) {
393 /* Device has been unplugged. vqs are already gone. */
394 return;
395 }
Amit Shah88f251a2009-12-21 22:15:30 +0530396 vq = port->in_vq;
397 if (port->inbuf)
398 buf = port->inbuf;
399 else
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300400 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530401
Amit Shahd6933562010-02-12 10:32:18 +0530402 ret = 0;
403 while (buf) {
404 if (add_inbuf(vq, buf) < 0) {
405 ret++;
406 free_buf(buf);
407 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300408 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530409 }
Amit Shah88f251a2009-12-21 22:15:30 +0530410 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530411 if (ret)
412 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
413 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530414}
415
Amit Shah203baab2010-01-18 19:15:12 +0530416static bool port_has_data(struct port *port)
417{
418 unsigned long flags;
419 bool ret;
420
Amit Shah203baab2010-01-18 19:15:12 +0530421 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +0530422 if (port->inbuf) {
Amit Shah203baab2010-01-18 19:15:12 +0530423 ret = true;
Amit Shahd6933562010-02-12 10:32:18 +0530424 goto out;
425 }
426 port->inbuf = get_inbuf(port);
427 if (port->inbuf) {
428 ret = true;
429 goto out;
430 }
431 ret = false;
432out:
Amit Shah203baab2010-01-18 19:15:12 +0530433 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530434 return ret;
435}
436
Amit Shah3425e702010-05-19 22:15:46 -0600437static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
438 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530439{
440 struct scatterlist sg[1];
441 struct virtio_console_control cpkt;
442 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530443 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530444
Amit Shah3425e702010-05-19 22:15:46 -0600445 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530446 return 0;
447
Amit Shah3425e702010-05-19 22:15:46 -0600448 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530449 cpkt.event = event;
450 cpkt.value = value;
451
Amit Shah3425e702010-05-19 22:15:46 -0600452 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530453
454 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300455 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
456 virtqueue_kick(vq);
457 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530458 cpu_relax();
459 }
460 return 0;
461}
462
Amit Shah3425e702010-05-19 22:15:46 -0600463static ssize_t send_control_msg(struct port *port, unsigned int event,
464 unsigned int value)
465{
Amit Shah84ec06c2010-09-02 18:11:42 +0530466 /* Did the port get unplugged before userspace closed it? */
467 if (port->portdev)
468 return __send_control_msg(port->portdev, port->id, event, value);
469 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600470}
471
Amit Shahcdfadfc2010-05-19 22:15:50 -0600472/* Callers must take the port->outvq_lock */
473static void reclaim_consumed_buffers(struct port *port)
474{
475 void *buf;
476 unsigned int len;
477
Amit Shahd7a62cd2011-03-04 14:04:33 +1030478 if (!port->portdev) {
479 /* Device has been unplugged. vqs are already gone. */
480 return;
481 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600482 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
483 kfree(buf);
484 port->outvq_full = false;
485 }
486}
487
488static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
489 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530490{
491 struct scatterlist sg[1];
492 struct virtqueue *out_vq;
493 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600494 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530495 unsigned int len;
496
497 out_vq = port->out_vq;
498
Amit Shahcdfadfc2010-05-19 22:15:50 -0600499 spin_lock_irqsave(&port->outvq_lock, flags);
500
501 reclaim_consumed_buffers(port);
502
Amit Shahf997f00b2009-12-21 17:28:51 +0530503 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300504 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530505
506 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300507 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530508
509 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600510 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600511 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530512 }
513
Amit Shahcdfadfc2010-05-19 22:15:50 -0600514 if (ret == 0)
515 port->outvq_full = true;
516
517 if (nonblock)
518 goto done;
519
520 /*
521 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e2010-10-20 13:45:43 +1030522 * sent. This is done for data from the hvc_console; the tty
523 * operations are performed with spinlocks held so we can't
524 * sleep here. An alternative would be to copy the data to a
525 * buffer and relax the spinning requirement. The downside is
526 * we need to kmalloc a GFP_ATOMIC buffer each time the
527 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600528 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300529 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530530 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600531done:
532 spin_unlock_irqrestore(&port->outvq_lock, flags);
533 /*
534 * We're expected to return the amount of data we wrote -- all
535 * of it
536 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600537 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530538}
539
Amit Shah203baab2010-01-18 19:15:12 +0530540/*
541 * Give out the data that's requested from the buffer that we have
542 * queued up.
543 */
Amit Shahb766cee2009-12-21 21:26:45 +0530544static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
545 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530546{
547 struct port_buffer *buf;
548 unsigned long flags;
549
550 if (!out_count || !port_has_data(port))
551 return 0;
552
553 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530554 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530555
Amit Shahb766cee2009-12-21 21:26:45 +0530556 if (to_user) {
557 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530558
Amit Shahb766cee2009-12-21 21:26:45 +0530559 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
560 if (ret)
561 return -EFAULT;
562 } else {
563 memcpy(out_buf, buf->buf + buf->offset, out_count);
564 }
565
Amit Shah203baab2010-01-18 19:15:12 +0530566 buf->offset += out_count;
567
568 if (buf->offset == buf->len) {
569 /*
570 * We're done using all the data in this buffer.
571 * Re-queue so that the Host can send us more data.
572 */
573 spin_lock_irqsave(&port->inbuf_lock, flags);
574 port->inbuf = NULL;
575
576 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530577 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530578
579 spin_unlock_irqrestore(&port->inbuf_lock, flags);
580 }
Amit Shahb766cee2009-12-21 21:26:45 +0530581 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530582 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530583}
584
Amit Shah2030fa42009-12-21 21:49:30 +0530585/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600586static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530587{
Amit Shah3709ea72010-09-02 18:11:43 +0530588 if (!port->guest_connected) {
589 /* Port got hot-unplugged. Let's exit. */
590 return false;
591 }
Amit Shah60caacd2010-05-19 22:15:49 -0600592 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530593}
594
Amit Shahcdfadfc2010-05-19 22:15:50 -0600595static bool will_write_block(struct port *port)
596{
597 bool ret;
598
Amit Shah60e5e0b2010-05-27 13:24:40 +0530599 if (!port->guest_connected) {
600 /* Port got hot-unplugged. Let's exit. */
601 return false;
602 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600603 if (!port->host_connected)
604 return true;
605
606 spin_lock_irq(&port->outvq_lock);
607 /*
608 * Check if the Host has consumed any buffers since we last
609 * sent data (this is only applicable for nonblocking ports).
610 */
611 reclaim_consumed_buffers(port);
612 ret = port->outvq_full;
613 spin_unlock_irq(&port->outvq_lock);
614
615 return ret;
616}
617
Amit Shah2030fa42009-12-21 21:49:30 +0530618static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
619 size_t count, loff_t *offp)
620{
621 struct port *port;
622 ssize_t ret;
623
624 port = filp->private_data;
625
626 if (!port_has_data(port)) {
627 /*
628 * If nothing's connected on the host just return 0 in
629 * case of list_empty; this tells the userspace app
630 * that there's no connection
631 */
632 if (!port->host_connected)
633 return 0;
634 if (filp->f_flags & O_NONBLOCK)
635 return -EAGAIN;
636
Amit Shaha08fa922011-09-14 13:06:41 +0530637 ret = wait_event_freezable(port->waitqueue,
638 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530639 if (ret < 0)
640 return ret;
641 }
Amit Shahb3dddb92010-09-02 18:11:45 +0530642 /* Port got hot-unplugged. */
643 if (!port->guest_connected)
644 return -ENODEV;
Amit Shah2030fa42009-12-21 21:49:30 +0530645 /*
646 * We could've received a disconnection message while we were
647 * waiting for more data.
648 *
649 * This check is not clubbed in the if() statement above as we
650 * might receive some data as well as the host could get
651 * disconnected after we got woken up from our wait. So we
652 * really want to give off whatever data we have and only then
653 * check for host_connected.
654 */
655 if (!port_has_data(port) && !port->host_connected)
656 return 0;
657
658 return fill_readbuf(port, ubuf, count, true);
659}
660
661static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
662 size_t count, loff_t *offp)
663{
664 struct port *port;
665 char *buf;
666 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600667 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530668
Amit Shah65745422010-09-14 13:26:16 +0530669 /* Userspace could be out to fool us */
670 if (!count)
671 return 0;
672
Amit Shah2030fa42009-12-21 21:49:30 +0530673 port = filp->private_data;
674
Amit Shahcdfadfc2010-05-19 22:15:50 -0600675 nonblock = filp->f_flags & O_NONBLOCK;
676
677 if (will_write_block(port)) {
678 if (nonblock)
679 return -EAGAIN;
680
Amit Shaha08fa922011-09-14 13:06:41 +0530681 ret = wait_event_freezable(port->waitqueue,
682 !will_write_block(port));
Amit Shahcdfadfc2010-05-19 22:15:50 -0600683 if (ret < 0)
684 return ret;
685 }
Amit Shahf4028112010-09-02 18:11:46 +0530686 /* Port got hot-unplugged. */
687 if (!port->guest_connected)
688 return -ENODEV;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600689
Amit Shah2030fa42009-12-21 21:49:30 +0530690 count = min((size_t)(32 * 1024), count);
691
692 buf = kmalloc(count, GFP_KERNEL);
693 if (!buf)
694 return -ENOMEM;
695
696 ret = copy_from_user(buf, ubuf, count);
697 if (ret) {
698 ret = -EFAULT;
699 goto free_buf;
700 }
701
Amit Shah531295e2010-10-20 13:45:43 +1030702 /*
703 * We now ask send_buf() to not spin for generic ports -- we
704 * can re-use the same code path that non-blocking file
705 * descriptors take for blocking file descriptors since the
706 * wait is already done and we're certain the write will go
707 * through to the host.
708 */
709 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600710 ret = send_buf(port, buf, count, nonblock);
711
712 if (nonblock && ret > 0)
713 goto out;
714
Amit Shah2030fa42009-12-21 21:49:30 +0530715free_buf:
716 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600717out:
Amit Shah2030fa42009-12-21 21:49:30 +0530718 return ret;
719}
720
721static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
722{
723 struct port *port;
724 unsigned int ret;
725
726 port = filp->private_data;
727 poll_wait(filp, &port->waitqueue, wait);
728
Amit Shah8529a502010-09-02 18:11:44 +0530729 if (!port->guest_connected) {
730 /* Port got unplugged */
731 return POLLHUP;
732 }
Amit Shah2030fa42009-12-21 21:49:30 +0530733 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530734 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530735 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600736 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530737 ret |= POLLOUT;
738 if (!port->host_connected)
739 ret |= POLLHUP;
740
741 return ret;
742}
743
Amit Shahb353a6b2010-09-02 18:38:29 +0530744static void remove_port(struct kref *kref);
745
Amit Shah2030fa42009-12-21 21:49:30 +0530746static int port_fops_release(struct inode *inode, struct file *filp)
747{
748 struct port *port;
749
750 port = filp->private_data;
751
752 /* Notify host of port being closed */
753 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
754
Amit Shah88f251a2009-12-21 22:15:30 +0530755 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530756 port->guest_connected = false;
757
Amit Shah88f251a2009-12-21 22:15:30 +0530758 discard_port_data(port);
759
760 spin_unlock_irq(&port->inbuf_lock);
761
Amit Shahcdfadfc2010-05-19 22:15:50 -0600762 spin_lock_irq(&port->outvq_lock);
763 reclaim_consumed_buffers(port);
764 spin_unlock_irq(&port->outvq_lock);
765
Amit Shahb353a6b2010-09-02 18:38:29 +0530766 /*
767 * Locks aren't necessary here as a port can't be opened after
768 * unplug, and if a port isn't unplugged, a kref would already
769 * exist for the port. Plus, taking ports_lock here would
770 * create a dependency on other locks taken by functions
771 * inside remove_port if we're the last holder of the port,
772 * creating many problems.
773 */
774 kref_put(&port->kref, remove_port);
775
Amit Shah2030fa42009-12-21 21:49:30 +0530776 return 0;
777}
778
779static int port_fops_open(struct inode *inode, struct file *filp)
780{
781 struct cdev *cdev = inode->i_cdev;
782 struct port *port;
Amit Shah8ad37e82010-09-02 18:11:48 +0530783 int ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530784
Amit Shah04950cd2010-09-02 18:20:58 +0530785 port = find_port_by_devt(cdev->dev);
Amit Shah2030fa42009-12-21 21:49:30 +0530786 filp->private_data = port;
787
Amit Shahb353a6b2010-09-02 18:38:29 +0530788 /* Prevent against a port getting hot-unplugged at the same time */
789 spin_lock_irq(&port->portdev->ports_lock);
790 kref_get(&port->kref);
791 spin_unlock_irq(&port->portdev->ports_lock);
792
Amit Shah2030fa42009-12-21 21:49:30 +0530793 /*
794 * Don't allow opening of console port devices -- that's done
795 * via /dev/hvc
796 */
Amit Shah8ad37e82010-09-02 18:11:48 +0530797 if (is_console_port(port)) {
798 ret = -ENXIO;
799 goto out;
800 }
Amit Shah2030fa42009-12-21 21:49:30 +0530801
Amit Shah3c7969c2009-11-26 11:25:38 +0530802 /* Allow only one process to open a particular port at a time */
803 spin_lock_irq(&port->inbuf_lock);
804 if (port->guest_connected) {
805 spin_unlock_irq(&port->inbuf_lock);
Amit Shah8ad37e82010-09-02 18:11:48 +0530806 ret = -EMFILE;
807 goto out;
Amit Shah3c7969c2009-11-26 11:25:38 +0530808 }
809
810 port->guest_connected = true;
811 spin_unlock_irq(&port->inbuf_lock);
812
Amit Shahcdfadfc2010-05-19 22:15:50 -0600813 spin_lock_irq(&port->outvq_lock);
814 /*
815 * There might be a chance that we missed reclaiming a few
816 * buffers in the window of the port getting previously closed
817 * and opening now.
818 */
819 reclaim_consumed_buffers(port);
820 spin_unlock_irq(&port->outvq_lock);
821
Amit Shah299fb612010-09-16 14:43:09 +0530822 nonseekable_open(inode, filp);
823
Amit Shah2030fa42009-12-21 21:49:30 +0530824 /* Notify host of port being opened */
825 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
826
827 return 0;
Amit Shah8ad37e82010-09-02 18:11:48 +0530828out:
Amit Shahb353a6b2010-09-02 18:38:29 +0530829 kref_put(&port->kref, remove_port);
Amit Shah8ad37e82010-09-02 18:11:48 +0530830 return ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530831}
832
Amit Shah3eae0ad2010-09-02 18:47:52 +0530833static int port_fops_fasync(int fd, struct file *filp, int mode)
834{
835 struct port *port;
836
837 port = filp->private_data;
838 return fasync_helper(fd, filp, mode, &port->async_queue);
839}
840
Amit Shah2030fa42009-12-21 21:49:30 +0530841/*
842 * The file operations that we support: programs in the guest can open
843 * a console device, read from it, write to it, poll for data and
844 * close it. The devices are at
845 * /dev/vport<device number>p<port number>
846 */
847static const struct file_operations port_fops = {
848 .owner = THIS_MODULE,
849 .open = port_fops_open,
850 .read = port_fops_read,
851 .write = port_fops_write,
852 .poll = port_fops_poll,
853 .release = port_fops_release,
Amit Shah3eae0ad2010-09-02 18:47:52 +0530854 .fasync = port_fops_fasync,
Amit Shah299fb612010-09-16 14:43:09 +0530855 .llseek = no_llseek,
Amit Shah2030fa42009-12-21 21:49:30 +0530856};
857
Amit Shahe27b5192010-01-18 19:15:02 +0530858/*
Rusty Russella23ea922010-01-18 19:14:55 +0530859 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000860 *
Rusty Russella23ea922010-01-18 19:14:55 +0530861 * We turn the characters into a scatter-gather list, add it to the
862 * output queue and then kick the Host. Then we sit here waiting for
863 * it to finish: inefficient in theory, but in practice
864 * implementations will do it immediately (lguest's Launcher does).
865 */
Rusty Russell31610432007-10-22 11:03:39 +1000866static int put_chars(u32 vtermno, const char *buf, int count)
867{
Rusty Russell21206ed2010-01-18 19:15:00 +0530868 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530869
François Diakhaté162a6892010-03-23 18:23:15 +0530870 if (unlikely(early_put_chars))
871 return early_put_chars(vtermno, buf, count);
872
Amit Shah38edf582010-01-18 19:15:05 +0530873 port = find_port_by_vtermno(vtermno);
874 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600875 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000876
Amit Shahcdfadfc2010-05-19 22:15:50 -0600877 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000878}
879
Rusty Russella23ea922010-01-18 19:14:55 +0530880/*
Rusty Russella23ea922010-01-18 19:14:55 +0530881 * get_chars() is the callback from the hvc_console infrastructure
882 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000883 *
Amit Shah203baab2010-01-18 19:15:12 +0530884 * We call out to fill_readbuf that gets us the required data from the
885 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530886 */
Rusty Russell31610432007-10-22 11:03:39 +1000887static int get_chars(u32 vtermno, char *buf, int count)
888{
Rusty Russell21206ed2010-01-18 19:15:00 +0530889 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000890
Amit Shah6dc69f972010-05-19 22:15:47 -0600891 /* If we've not set up the port yet, we have no input to give. */
892 if (unlikely(early_put_chars))
893 return 0;
894
Amit Shah38edf582010-01-18 19:15:05 +0530895 port = find_port_by_vtermno(vtermno);
896 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600897 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530898
899 /* If we don't have an input queue yet, we can't get input. */
900 BUG_ON(!port->in_vq);
901
Amit Shahb766cee2009-12-21 21:26:45 +0530902 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000903}
Rusty Russell31610432007-10-22 11:03:39 +1000904
Amit Shahcb06e362010-01-18 19:15:08 +0530905static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100906{
Amit Shahcb06e362010-01-18 19:15:08 +0530907 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100908
Amit Shah2de16a42010-03-19 17:36:44 +0530909 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530910 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530911 return;
912
Amit Shahcb06e362010-01-18 19:15:08 +0530913 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530914 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
915 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100916}
917
Amit Shah38edf582010-01-18 19:15:05 +0530918/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200919static int notifier_add_vio(struct hvc_struct *hp, int data)
920{
Amit Shah38edf582010-01-18 19:15:05 +0530921 struct port *port;
922
923 port = find_port_by_vtermno(hp->vtermno);
924 if (!port)
925 return -EINVAL;
926
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200927 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530928 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100929
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200930 return 0;
931}
932
933static void notifier_del_vio(struct hvc_struct *hp, int data)
934{
935 hp->irq_requested = 0;
936}
937
Amit Shah17634ba2009-12-21 21:03:25 +0530938/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530939static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530940 .get_chars = get_chars,
941 .put_chars = put_chars,
942 .notifier_add = notifier_add_vio,
943 .notifier_del = notifier_del_vio,
944 .notifier_hangup = notifier_del_vio,
945};
946
947/*
948 * Console drivers are initialized very early so boot messages can go
949 * out, so we do things slightly differently from the generic virtio
950 * initialization of the net and block drivers.
951 *
952 * At this stage, the console is output-only. It's too early to set
953 * up a virtqueue, so we let the drivers do some boutique early-output
954 * thing.
955 */
956int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
957{
958 early_put_chars = put_chars;
959 return hvc_instantiate(0, 0, &hv_ops);
960}
961
Amit Shah17634ba2009-12-21 21:03:25 +0530962int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530963{
964 int ret;
965
966 /*
967 * The Host's telling us this port is a console port. Hook it
968 * up with an hvc console.
969 *
970 * To set up and manage our virtual console, we call
971 * hvc_alloc().
972 *
973 * The first argument of hvc_alloc() is the virtual console
974 * number. The second argument is the parameter for the
975 * notification mechanism (like irq number). We currently
976 * leave this as zero, virtqueues have implicit notifications.
977 *
978 * The third argument is a "struct hv_ops" containing the
979 * put_chars() get_chars(), notifier_add() and notifier_del()
980 * pointers. The final argument is the output buffer size: we
981 * can do any size, so we put PAGE_SIZE here.
982 */
983 port->cons.vtermno = pdrvdata.next_vtermno;
984
985 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
986 if (IS_ERR(port->cons.hvc)) {
987 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530988 dev_err(port->dev,
989 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530990 port->cons.hvc = NULL;
991 return ret;
992 }
993 spin_lock_irq(&pdrvdata_lock);
994 pdrvdata.next_vtermno++;
995 list_add_tail(&port->cons.list, &pdrvdata.consoles);
996 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530997 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530998
Amit Shah1d051602010-05-19 22:15:49 -0600999 /*
1000 * Start using the new console output if this is the first
1001 * console to come up.
1002 */
1003 if (early_put_chars)
1004 early_put_chars = NULL;
1005
Amit Shah2030fa42009-12-21 21:49:30 +05301006 /* Notify host of port being opened */
1007 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
1008
Amit Shahcfa6d372010-01-18 19:15:10 +05301009 return 0;
1010}
1011
Amit Shah431edb82009-12-21 21:57:40 +05301012static ssize_t show_port_name(struct device *dev,
1013 struct device_attribute *attr, char *buffer)
1014{
1015 struct port *port;
1016
1017 port = dev_get_drvdata(dev);
1018
1019 return sprintf(buffer, "%s\n", port->name);
1020}
1021
1022static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
1023
1024static struct attribute *port_sysfs_entries[] = {
1025 &dev_attr_name.attr,
1026 NULL
1027};
1028
1029static struct attribute_group port_attribute_group = {
1030 .name = NULL, /* put in device directory */
1031 .attrs = port_sysfs_entries,
1032};
1033
Amit Shahd99393e2009-12-21 22:36:21 +05301034static int debugfs_open(struct inode *inode, struct file *filp)
1035{
1036 filp->private_data = inode->i_private;
1037 return 0;
1038}
1039
1040static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
1041 size_t count, loff_t *offp)
1042{
1043 struct port *port;
1044 char *buf;
1045 ssize_t ret, out_offset, out_count;
1046
1047 out_count = 1024;
1048 buf = kmalloc(out_count, GFP_KERNEL);
1049 if (!buf)
1050 return -ENOMEM;
1051
1052 port = filp->private_data;
1053 out_offset = 0;
1054 out_offset += snprintf(buf + out_offset, out_count,
1055 "name: %s\n", port->name ? port->name : "");
1056 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1057 "guest_connected: %d\n", port->guest_connected);
1058 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1059 "host_connected: %d\n", port->host_connected);
1060 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahcdfadfc2010-05-19 22:15:50 -06001061 "outvq_full: %d\n", port->outvq_full);
1062 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahd99393e2009-12-21 22:36:21 +05301063 "is_console: %s\n",
1064 is_console_port(port) ? "yes" : "no");
1065 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1066 "console_vtermno: %u\n", port->cons.vtermno);
1067
1068 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
1069 kfree(buf);
1070 return ret;
1071}
1072
1073static const struct file_operations port_debugfs_ops = {
1074 .owner = THIS_MODULE,
1075 .open = debugfs_open,
1076 .read = debugfs_read,
1077};
1078
Amit Shah97788292010-05-06 02:05:08 +05301079static void set_console_size(struct port *port, u16 rows, u16 cols)
1080{
1081 if (!port || !is_console_port(port))
1082 return;
1083
1084 port->cons.ws.ws_row = rows;
1085 port->cons.ws.ws_col = cols;
1086}
1087
Amit Shahc446f8f2010-05-19 22:15:48 -06001088static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
1089{
1090 struct port_buffer *buf;
1091 unsigned int nr_added_bufs;
1092 int ret;
1093
1094 nr_added_bufs = 0;
1095 do {
1096 buf = alloc_buf(PAGE_SIZE);
1097 if (!buf)
1098 break;
1099
1100 spin_lock_irq(lock);
1101 ret = add_inbuf(vq, buf);
1102 if (ret < 0) {
1103 spin_unlock_irq(lock);
1104 free_buf(buf);
1105 break;
1106 }
1107 nr_added_bufs++;
1108 spin_unlock_irq(lock);
1109 } while (ret > 0);
1110
1111 return nr_added_bufs;
1112}
1113
Amit Shah3eae0ad2010-09-02 18:47:52 +05301114static void send_sigio_to_port(struct port *port)
1115{
1116 if (port->async_queue && port->guest_connected)
1117 kill_fasync(&port->async_queue, SIGIO, POLL_OUT);
1118}
1119
Amit Shahc446f8f2010-05-19 22:15:48 -06001120static int add_port(struct ports_device *portdev, u32 id)
1121{
1122 char debugfs_name[16];
1123 struct port *port;
1124 struct port_buffer *buf;
1125 dev_t devt;
1126 unsigned int nr_added_bufs;
1127 int err;
1128
1129 port = kmalloc(sizeof(*port), GFP_KERNEL);
1130 if (!port) {
1131 err = -ENOMEM;
1132 goto fail;
1133 }
Amit Shahb353a6b2010-09-02 18:38:29 +05301134 kref_init(&port->kref);
Amit Shahc446f8f2010-05-19 22:15:48 -06001135
1136 port->portdev = portdev;
1137 port->id = id;
1138
1139 port->name = NULL;
1140 port->inbuf = NULL;
1141 port->cons.hvc = NULL;
Amit Shah3eae0ad2010-09-02 18:47:52 +05301142 port->async_queue = NULL;
Amit Shahc446f8f2010-05-19 22:15:48 -06001143
Amit Shah97788292010-05-06 02:05:08 +05301144 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
1145
Amit Shahc446f8f2010-05-19 22:15:48 -06001146 port->host_connected = port->guest_connected = false;
1147
Amit Shahcdfadfc2010-05-19 22:15:50 -06001148 port->outvq_full = false;
1149
Amit Shahc446f8f2010-05-19 22:15:48 -06001150 port->in_vq = portdev->in_vqs[port->id];
1151 port->out_vq = portdev->out_vqs[port->id];
1152
Amit Shahd22a6982010-09-02 18:20:59 +05301153 port->cdev = cdev_alloc();
1154 if (!port->cdev) {
1155 dev_err(&port->portdev->vdev->dev, "Error allocating cdev\n");
1156 err = -ENOMEM;
1157 goto free_port;
1158 }
1159 port->cdev->ops = &port_fops;
Amit Shahc446f8f2010-05-19 22:15:48 -06001160
1161 devt = MKDEV(portdev->chr_major, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301162 err = cdev_add(port->cdev, devt, 1);
Amit Shahc446f8f2010-05-19 22:15:48 -06001163 if (err < 0) {
1164 dev_err(&port->portdev->vdev->dev,
1165 "Error %d adding cdev for port %u\n", err, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301166 goto free_cdev;
Amit Shahc446f8f2010-05-19 22:15:48 -06001167 }
1168 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1169 devt, port, "vport%up%u",
1170 port->portdev->drv_index, id);
1171 if (IS_ERR(port->dev)) {
1172 err = PTR_ERR(port->dev);
1173 dev_err(&port->portdev->vdev->dev,
1174 "Error %d creating device for port %u\n",
1175 err, id);
1176 goto free_cdev;
1177 }
1178
1179 spin_lock_init(&port->inbuf_lock);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001180 spin_lock_init(&port->outvq_lock);
Amit Shahc446f8f2010-05-19 22:15:48 -06001181 init_waitqueue_head(&port->waitqueue);
1182
1183 /* Fill the in_vq with buffers so the host can send us data. */
1184 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1185 if (!nr_added_bufs) {
1186 dev_err(port->dev, "Error allocating inbufs\n");
1187 err = -ENOMEM;
1188 goto free_device;
1189 }
1190
1191 /*
1192 * If we're not using multiport support, this has to be a console port
1193 */
1194 if (!use_multiport(port->portdev)) {
1195 err = init_port_console(port);
1196 if (err)
1197 goto free_inbufs;
1198 }
1199
1200 spin_lock_irq(&portdev->ports_lock);
1201 list_add_tail(&port->list, &port->portdev->ports);
1202 spin_unlock_irq(&portdev->ports_lock);
1203
1204 /*
1205 * Tell the Host we're set so that it can send us various
1206 * configuration parameters for this port (eg, port name,
1207 * caching, whether this is a console port, etc.)
1208 */
1209 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1210
1211 if (pdrvdata.debugfs_dir) {
1212 /*
1213 * Finally, create the debugfs file that we can use to
1214 * inspect a port's state at any time
1215 */
1216 sprintf(debugfs_name, "vport%up%u",
1217 port->portdev->drv_index, id);
1218 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1219 pdrvdata.debugfs_dir,
1220 port,
1221 &port_debugfs_ops);
1222 }
1223 return 0;
1224
1225free_inbufs:
1226 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1227 free_buf(buf);
1228free_device:
1229 device_destroy(pdrvdata.class, port->dev->devt);
1230free_cdev:
Amit Shahd22a6982010-09-02 18:20:59 +05301231 cdev_del(port->cdev);
Amit Shahc446f8f2010-05-19 22:15:48 -06001232free_port:
1233 kfree(port);
1234fail:
1235 /* The host might want to notify management sw about port add failure */
Julia Lawall0643e4c2010-05-15 11:45:53 +02001236 __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shahc446f8f2010-05-19 22:15:48 -06001237 return err;
1238}
1239
Amit Shahb353a6b2010-09-02 18:38:29 +05301240/* No users remain, remove all port-specific data. */
1241static void remove_port(struct kref *kref)
1242{
1243 struct port *port;
1244
1245 port = container_of(kref, struct port, kref);
1246
1247 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1248 device_destroy(pdrvdata.class, port->dev->devt);
1249 cdev_del(port->cdev);
1250
1251 kfree(port->name);
1252
1253 debugfs_remove(port->debugfs_file);
1254
1255 kfree(port);
1256}
1257
1258/*
1259 * Port got unplugged. Remove port from portdev's list and drop the
1260 * kref reference. If no userspace has this port opened, it will
1261 * result in immediate removal the port.
1262 */
1263static void unplug_port(struct port *port)
Amit Shah1f7aa422009-12-21 22:27:31 +05301264{
Amit Shaha9cdd482010-02-12 10:32:15 +05301265 struct port_buffer *buf;
1266
Amit Shahb353a6b2010-09-02 18:38:29 +05301267 spin_lock_irq(&port->portdev->ports_lock);
1268 list_del(&port->list);
1269 spin_unlock_irq(&port->portdev->ports_lock);
1270
Amit Shah00476342010-05-27 13:24:39 +05301271 if (port->guest_connected) {
1272 port->guest_connected = false;
1273 port->host_connected = false;
1274 wake_up_interruptible(&port->waitqueue);
Amit Shaha461e112010-09-02 18:47:54 +05301275
1276 /* Let the app know the port is going down. */
1277 send_sigio_to_port(port);
Amit Shah00476342010-05-27 13:24:39 +05301278 }
1279
Amit Shah1f7aa422009-12-21 22:27:31 +05301280 if (is_console_port(port)) {
1281 spin_lock_irq(&pdrvdata_lock);
1282 list_del(&port->cons.list);
1283 spin_unlock_irq(&pdrvdata_lock);
1284 hvc_remove(port->cons.hvc);
1285 }
Amit Shah1f7aa422009-12-21 22:27:31 +05301286
Amit Shaha9cdd482010-02-12 10:32:15 +05301287 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +05301288 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301289
Amit Shahcdfadfc2010-05-19 22:15:50 -06001290 reclaim_consumed_buffers(port);
1291
Amit Shaha9cdd482010-02-12 10:32:15 +05301292 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001293 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +05301294 free_buf(buf);
1295
Amit Shahb353a6b2010-09-02 18:38:29 +05301296 /*
1297 * We should just assume the device itself has gone off --
1298 * else a close on an open port later will try to send out a
1299 * control message.
1300 */
1301 port->portdev = NULL;
Amit Shah1f7aa422009-12-21 22:27:31 +05301302
Amit Shahb353a6b2010-09-02 18:38:29 +05301303 /*
1304 * Locks around here are not necessary - a port can't be
1305 * opened after we removed the port struct from ports_list
1306 * above.
1307 */
1308 kref_put(&port->kref, remove_port);
Amit Shah1f7aa422009-12-21 22:27:31 +05301309}
1310
Amit Shah17634ba2009-12-21 21:03:25 +05301311/* Any private messages that the Host and Guest want to share */
1312static void handle_control_message(struct ports_device *portdev,
1313 struct port_buffer *buf)
1314{
1315 struct virtio_console_control *cpkt;
1316 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301317 size_t name_size;
1318 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301319
1320 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1321
1322 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001323 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301324 /* No valid header at start of buffer. Drop it. */
1325 dev_dbg(&portdev->vdev->dev,
1326 "Invalid index %u in control packet\n", cpkt->id);
1327 return;
1328 }
1329
1330 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001331 case VIRTIO_CONSOLE_PORT_ADD:
1332 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001333 dev_dbg(&portdev->vdev->dev,
1334 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001335 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1336 break;
1337 }
1338 if (cpkt->id >= portdev->config.max_nr_ports) {
1339 dev_warn(&portdev->vdev->dev,
1340 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1341 cpkt->id, portdev->config.max_nr_ports - 1);
1342 break;
1343 }
1344 add_port(portdev, cpkt->id);
1345 break;
1346 case VIRTIO_CONSOLE_PORT_REMOVE:
Amit Shahb353a6b2010-09-02 18:38:29 +05301347 unplug_port(port);
Amit Shahf909f852010-05-19 22:15:48 -06001348 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301349 case VIRTIO_CONSOLE_CONSOLE_PORT:
1350 if (!cpkt->value)
1351 break;
1352 if (is_console_port(port))
1353 break;
1354
1355 init_port_console(port);
1356 /*
1357 * Could remove the port here in case init fails - but
1358 * have to notify the host first.
1359 */
1360 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301361 case VIRTIO_CONSOLE_RESIZE: {
1362 struct {
1363 __u16 rows;
1364 __u16 cols;
1365 } size;
1366
Amit Shah17634ba2009-12-21 21:03:25 +05301367 if (!is_console_port(port))
1368 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301369
1370 memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt),
1371 sizeof(size));
1372 set_console_size(port, size.rows, size.cols);
1373
Amit Shah17634ba2009-12-21 21:03:25 +05301374 port->cons.hvc->irq_requested = 1;
1375 resize_console(port);
1376 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301377 }
Amit Shah2030fa42009-12-21 21:49:30 +05301378 case VIRTIO_CONSOLE_PORT_OPEN:
1379 port->host_connected = cpkt->value;
1380 wake_up_interruptible(&port->waitqueue);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001381 /*
1382 * If the host port got closed and the host had any
1383 * unconsumed buffers, we'll be able to reclaim them
1384 * now.
1385 */
1386 spin_lock_irq(&port->outvq_lock);
1387 reclaim_consumed_buffers(port);
1388 spin_unlock_irq(&port->outvq_lock);
Amit Shah3eae0ad2010-09-02 18:47:52 +05301389
1390 /*
1391 * If the guest is connected, it'll be interested in
1392 * knowing the host connection state changed.
1393 */
1394 send_sigio_to_port(port);
Amit Shah2030fa42009-12-21 21:49:30 +05301395 break;
Amit Shah431edb82009-12-21 21:57:40 +05301396 case VIRTIO_CONSOLE_PORT_NAME:
1397 /*
Amit Shah291024e2011-09-14 13:06:40 +05301398 * If we woke up after hibernation, we can get this
1399 * again. Skip it in that case.
1400 */
1401 if (port->name)
1402 break;
1403
1404 /*
Amit Shah431edb82009-12-21 21:57:40 +05301405 * Skip the size of the header and the cpkt to get the size
1406 * of the name that was sent
1407 */
1408 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1409
1410 port->name = kmalloc(name_size, GFP_KERNEL);
1411 if (!port->name) {
1412 dev_err(port->dev,
1413 "Not enough space to store port name\n");
1414 break;
1415 }
1416 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1417 name_size - 1);
1418 port->name[name_size - 1] = 0;
1419
1420 /*
1421 * Since we only have one sysfs attribute, 'name',
1422 * create it only if we have a name for the port.
1423 */
1424 err = sysfs_create_group(&port->dev->kobj,
1425 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301426 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301427 dev_err(port->dev,
1428 "Error %d creating sysfs device attributes\n",
1429 err);
Amit Shahec642132010-03-19 17:36:43 +05301430 } else {
1431 /*
1432 * Generate a udev event so that appropriate
1433 * symlinks can be created based on udev
1434 * rules.
1435 */
1436 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1437 }
Amit Shah431edb82009-12-21 21:57:40 +05301438 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301439 }
1440}
1441
1442static void control_work_handler(struct work_struct *work)
1443{
1444 struct ports_device *portdev;
1445 struct virtqueue *vq;
1446 struct port_buffer *buf;
1447 unsigned int len;
1448
1449 portdev = container_of(work, struct ports_device, control_work);
1450 vq = portdev->c_ivq;
1451
1452 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001453 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301454 spin_unlock(&portdev->cvq_lock);
1455
1456 buf->len = len;
1457 buf->offset = 0;
1458
1459 handle_control_message(portdev, buf);
1460
1461 spin_lock(&portdev->cvq_lock);
1462 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1463 dev_warn(&portdev->vdev->dev,
1464 "Error adding buffer to queue\n");
1465 free_buf(buf);
1466 }
1467 }
1468 spin_unlock(&portdev->cvq_lock);
1469}
1470
Amit Shah2770c5e2011-01-31 13:06:36 +05301471static void out_intr(struct virtqueue *vq)
1472{
1473 struct port *port;
1474
1475 port = find_port_by_vq(vq->vdev->priv, vq);
1476 if (!port)
1477 return;
1478
1479 wake_up_interruptible(&port->waitqueue);
1480}
1481
Amit Shah17634ba2009-12-21 21:03:25 +05301482static void in_intr(struct virtqueue *vq)
1483{
1484 struct port *port;
1485 unsigned long flags;
1486
1487 port = find_port_by_vq(vq->vdev->priv, vq);
1488 if (!port)
1489 return;
1490
1491 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301492 if (!port->inbuf)
1493 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301494
Amit Shah88f251a2009-12-21 22:15:30 +05301495 /*
1496 * Don't queue up data when port is closed. This condition
1497 * can be reached when a console port is not yet connected (no
1498 * tty is spawned) and the host sends out data to console
1499 * ports. For generic serial ports, the host won't
1500 * (shouldn't) send data till the guest is connected.
1501 */
1502 if (!port->guest_connected)
1503 discard_port_data(port);
1504
Amit Shah17634ba2009-12-21 21:03:25 +05301505 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1506
Amit Shah2030fa42009-12-21 21:49:30 +05301507 wake_up_interruptible(&port->waitqueue);
1508
Amit Shah55f6bcc2010-09-02 18:47:53 +05301509 /* Send a SIGIO indicating new data in case the process asked for it */
1510 send_sigio_to_port(port);
1511
Amit Shah17634ba2009-12-21 21:03:25 +05301512 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1513 hvc_kick();
1514}
1515
1516static void control_intr(struct virtqueue *vq)
1517{
1518 struct ports_device *portdev;
1519
1520 portdev = vq->vdev->priv;
1521 schedule_work(&portdev->control_work);
1522}
1523
Amit Shah7f5d8102009-12-21 22:22:08 +05301524static void config_intr(struct virtio_device *vdev)
1525{
1526 struct ports_device *portdev;
1527
1528 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001529
Amit Shah4038f5b72010-05-06 02:05:07 +05301530 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301531 struct port *port;
1532 u16 rows, cols;
1533
1534 vdev->config->get(vdev,
1535 offsetof(struct virtio_console_config, cols),
1536 &cols, sizeof(u16));
1537 vdev->config->get(vdev,
1538 offsetof(struct virtio_console_config, rows),
1539 &rows, sizeof(u16));
1540
1541 port = find_port_by_id(portdev, 0);
1542 set_console_size(port, rows, cols);
1543
Amit Shah4038f5b72010-05-06 02:05:07 +05301544 /*
1545 * We'll use this way of resizing only for legacy
1546 * support. For newer userspace
1547 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1548 * to indicate console size changes so that it can be
1549 * done per-port.
1550 */
Amit Shah97788292010-05-06 02:05:08 +05301551 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301552 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301553}
1554
Amit Shah2658a79a2010-01-18 19:15:11 +05301555static int init_vqs(struct ports_device *portdev)
1556{
1557 vq_callback_t **io_callbacks;
1558 char **io_names;
1559 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301560 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a79a2010-01-18 19:15:11 +05301561 int err;
1562
Amit Shah17634ba2009-12-21 21:03:25 +05301563 nr_ports = portdev->config.max_nr_ports;
1564 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301565
1566 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301567 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301568 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301569 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1570 GFP_KERNEL);
Amit Shah2658a79a2010-01-18 19:15:11 +05301571 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1572 GFP_KERNEL);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001573 if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs ||
Amit Shah286f9a22011-09-14 13:06:39 +05301574 !portdev->out_vqs) {
Amit Shah2658a79a2010-01-18 19:15:11 +05301575 err = -ENOMEM;
Jiri Slaby22e132f2010-11-06 10:06:50 +01001576 goto free;
Amit Shah2658a79a2010-01-18 19:15:11 +05301577 }
1578
Amit Shah17634ba2009-12-21 21:03:25 +05301579 /*
1580 * For backward compat (newer host but older guest), the host
1581 * spawns a console port first and also inits the vqs for port
1582 * 0 before others.
1583 */
1584 j = 0;
1585 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301586 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301587 io_names[j] = "input";
1588 io_names[j + 1] = "output";
1589 j += 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301590
Amit Shah17634ba2009-12-21 21:03:25 +05301591 if (use_multiport(portdev)) {
1592 io_callbacks[j] = control_intr;
1593 io_callbacks[j + 1] = NULL;
1594 io_names[j] = "control-i";
1595 io_names[j + 1] = "control-o";
1596
1597 for (i = 1; i < nr_ports; i++) {
1598 j += 2;
1599 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301600 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301601 io_names[j] = "input";
1602 io_names[j + 1] = "output";
1603 }
1604 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301605 /* Find the queues. */
1606 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1607 io_callbacks,
1608 (const char **)io_names);
1609 if (err)
Jiri Slaby22e132f2010-11-06 10:06:50 +01001610 goto free;
Amit Shah2658a79a2010-01-18 19:15:11 +05301611
Amit Shah17634ba2009-12-21 21:03:25 +05301612 j = 0;
Amit Shah2658a79a2010-01-18 19:15:11 +05301613 portdev->in_vqs[0] = vqs[0];
1614 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301615 j += 2;
1616 if (use_multiport(portdev)) {
1617 portdev->c_ivq = vqs[j];
1618 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a79a2010-01-18 19:15:11 +05301619
Amit Shah17634ba2009-12-21 21:03:25 +05301620 for (i = 1; i < nr_ports; i++) {
1621 j += 2;
1622 portdev->in_vqs[i] = vqs[j];
1623 portdev->out_vqs[i] = vqs[j + 1];
1624 }
1625 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301626 kfree(io_names);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001627 kfree(io_callbacks);
Amit Shah2658a79a2010-01-18 19:15:11 +05301628 kfree(vqs);
1629
1630 return 0;
1631
Jiri Slaby22e132f2010-11-06 10:06:50 +01001632free:
Amit Shah2658a79a2010-01-18 19:15:11 +05301633 kfree(portdev->out_vqs);
Amit Shah2658a79a2010-01-18 19:15:11 +05301634 kfree(portdev->in_vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001635 kfree(io_names);
1636 kfree(io_callbacks);
Amit Shah2658a79a2010-01-18 19:15:11 +05301637 kfree(vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001638
Amit Shah2658a79a2010-01-18 19:15:11 +05301639 return err;
1640}
1641
Amit Shahfb08bd22009-12-21 21:36:04 +05301642static const struct file_operations portdev_fops = {
1643 .owner = THIS_MODULE,
1644};
1645
Amit Shah1c85bf32010-01-18 19:15:07 +05301646/*
1647 * Once we're further in boot, we get probed like any other virtio
1648 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301649 *
1650 * If the host also supports multiple console ports, we check the
1651 * config space to see how many ports the host has spawned. We
1652 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301653 */
1654static int __devinit virtcons_probe(struct virtio_device *vdev)
1655{
Amit Shah1c85bf32010-01-18 19:15:07 +05301656 struct ports_device *portdev;
1657 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301658 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301659
1660 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1661 if (!portdev) {
1662 err = -ENOMEM;
1663 goto fail;
1664 }
1665
1666 /* Attach this portdev to this virtio_device, and vice-versa. */
1667 portdev->vdev = vdev;
1668 vdev->priv = portdev;
1669
Amit Shahfb08bd22009-12-21 21:36:04 +05301670 spin_lock_irq(&pdrvdata_lock);
1671 portdev->drv_index = pdrvdata.index++;
1672 spin_unlock_irq(&pdrvdata_lock);
1673
1674 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1675 &portdev_fops);
1676 if (portdev->chr_major < 0) {
1677 dev_err(&vdev->dev,
1678 "Error %d registering chrdev for device %u\n",
1679 portdev->chr_major, portdev->drv_index);
1680 err = portdev->chr_major;
1681 goto free;
1682 }
1683
Amit Shah17634ba2009-12-21 21:03:25 +05301684 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301685 portdev->config.max_nr_ports = 1;
Sasha Levin51c6d612011-08-14 17:52:31 +03001686 if (virtio_config_val(vdev, VIRTIO_CONSOLE_F_MULTIPORT,
1687 offsetof(struct virtio_console_config,
1688 max_nr_ports),
1689 &portdev->config.max_nr_ports) == 0)
Amit Shah17634ba2009-12-21 21:03:25 +05301690 multiport = true;
Amit Shah17634ba2009-12-21 21:03:25 +05301691
Amit Shah2658a79a2010-01-18 19:15:11 +05301692 err = init_vqs(portdev);
1693 if (err < 0) {
1694 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301695 goto free_chrdev;
Amit Shah2658a79a2010-01-18 19:15:11 +05301696 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301697
Amit Shah17634ba2009-12-21 21:03:25 +05301698 spin_lock_init(&portdev->ports_lock);
1699 INIT_LIST_HEAD(&portdev->ports);
1700
1701 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301702 unsigned int nr_added_bufs;
1703
Amit Shah17634ba2009-12-21 21:03:25 +05301704 spin_lock_init(&portdev->cvq_lock);
1705 INIT_WORK(&portdev->control_work, &control_work_handler);
1706
Amit Shah335a64a5c2010-02-24 10:37:44 +05301707 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1708 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301709 dev_err(&vdev->dev,
1710 "Error allocating buffers for control queue\n");
1711 err = -ENOMEM;
1712 goto free_vqs;
1713 }
Amit Shah1d051602010-05-19 22:15:49 -06001714 } else {
1715 /*
1716 * For backward compatibility: Create a console port
1717 * if we're running on older host.
1718 */
1719 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301720 }
1721
Amit Shah6bdf2af2010-09-02 18:11:49 +05301722 spin_lock_irq(&pdrvdata_lock);
1723 list_add_tail(&portdev->list, &pdrvdata.portdevs);
1724 spin_unlock_irq(&pdrvdata_lock);
1725
Amit Shahf909f852010-05-19 22:15:48 -06001726 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1727 VIRTIO_CONSOLE_DEVICE_READY, 1);
Rusty Russell31610432007-10-22 11:03:39 +10001728 return 0;
1729
Amit Shah22a29ea2010-02-12 10:32:17 +05301730free_vqs:
Julia Lawall0643e4c2010-05-15 11:45:53 +02001731 /* The host might want to notify mgmt sw about device add failure */
1732 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1733 VIRTIO_CONSOLE_DEVICE_READY, 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301734 vdev->config->del_vqs(vdev);
1735 kfree(portdev->in_vqs);
1736 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301737free_chrdev:
1738 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001739free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301740 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001741fail:
1742 return err;
1743}
1744
Amit Shah71778762010-02-12 10:32:16 +05301745static void virtcons_remove(struct virtio_device *vdev)
1746{
1747 struct ports_device *portdev;
1748 struct port *port, *port2;
Amit Shah71778762010-02-12 10:32:16 +05301749
1750 portdev = vdev->priv;
1751
Amit Shah6bdf2af2010-09-02 18:11:49 +05301752 spin_lock_irq(&pdrvdata_lock);
1753 list_del(&portdev->list);
1754 spin_unlock_irq(&pdrvdata_lock);
1755
Amit Shah02238952010-09-02 18:11:40 +05301756 /* Disable interrupts for vqs */
1757 vdev->config->reset(vdev);
1758 /* Finish up work that's lined up */
Amit Shah71778762010-02-12 10:32:16 +05301759 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301760
1761 list_for_each_entry_safe(port, port2, &portdev->ports, list)
Amit Shahb353a6b2010-09-02 18:38:29 +05301762 unplug_port(port);
Amit Shah71778762010-02-12 10:32:16 +05301763
1764 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1765
Amit Shahe0620132010-09-02 18:38:30 +05301766 /*
1767 * When yanking out a device, we immediately lose the
1768 * (device-side) queues. So there's no point in keeping the
1769 * guest side around till we drop our final reference. This
1770 * also means that any ports which are in an open state will
1771 * have to just stop using the port, as the vqs are going
1772 * away.
1773 */
Amit Shah96eb8722010-09-02 18:11:41 +05301774 if (use_multiport(portdev)) {
1775 struct port_buffer *buf;
1776 unsigned int len;
Amit Shah71778762010-02-12 10:32:16 +05301777
Amit Shah96eb8722010-09-02 18:11:41 +05301778 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1779 free_buf(buf);
1780
1781 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1782 free_buf(buf);
1783 }
Amit Shah71778762010-02-12 10:32:16 +05301784
1785 vdev->config->del_vqs(vdev);
1786 kfree(portdev->in_vqs);
1787 kfree(portdev->out_vqs);
1788
1789 kfree(portdev);
1790}
1791
Rusty Russell31610432007-10-22 11:03:39 +10001792static struct virtio_device_id id_table[] = {
1793 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1794 { 0 },
1795};
1796
Christian Borntraegerc2983452008-11-25 13:36:26 +01001797static unsigned int features[] = {
1798 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001799 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001800};
1801
Rusty Russell31610432007-10-22 11:03:39 +10001802static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001803 .feature_table = features,
1804 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001805 .driver.name = KBUILD_MODNAME,
1806 .driver.owner = THIS_MODULE,
1807 .id_table = id_table,
1808 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301809 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301810 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001811};
1812
1813static int __init init(void)
1814{
Amit Shahfb08bd22009-12-21 21:36:04 +05301815 int err;
1816
1817 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1818 if (IS_ERR(pdrvdata.class)) {
1819 err = PTR_ERR(pdrvdata.class);
1820 pr_err("Error %d creating virtio-ports class\n", err);
1821 return err;
1822 }
Amit Shahd99393e2009-12-21 22:36:21 +05301823
1824 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1825 if (!pdrvdata.debugfs_dir) {
1826 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1827 PTR_ERR(pdrvdata.debugfs_dir));
1828 }
Amit Shah38edf582010-01-18 19:15:05 +05301829 INIT_LIST_HEAD(&pdrvdata.consoles);
Amit Shah6bdf2af2010-09-02 18:11:49 +05301830 INIT_LIST_HEAD(&pdrvdata.portdevs);
Amit Shah38edf582010-01-18 19:15:05 +05301831
Rusty Russell31610432007-10-22 11:03:39 +10001832 return register_virtio_driver(&virtio_console);
1833}
Amit Shah71778762010-02-12 10:32:16 +05301834
1835static void __exit fini(void)
1836{
1837 unregister_virtio_driver(&virtio_console);
1838
1839 class_destroy(pdrvdata.class);
1840 if (pdrvdata.debugfs_dir)
1841 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1842}
Rusty Russell31610432007-10-22 11:03:39 +10001843module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301844module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001845
1846MODULE_DEVICE_TABLE(virtio, id_table);
1847MODULE_DESCRIPTION("Virtio console driver");
1848MODULE_LICENSE("GPL");