blob: c4ca436942339da8f8ff5433f5b7c497fa0b636f [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Amit Shah17634ba2009-12-21 21:03:25 +05303 * Copyright (C) 2009, 2010 Red Hat, Inc.
Rusty Russell31610432007-10-22 11:03:39 +10004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
Amit Shahfb08bd22009-12-21 21:36:04 +053019#include <linux/cdev.h>
Amit Shahd99393e2009-12-21 22:36:21 +053020#include <linux/debugfs.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053021#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100022#include <linux/err.h>
Amit Shah2030fa42009-12-21 21:49:30 +053023#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100024#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053025#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053026#include <linux/poll.h>
27#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053029#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100030#include <linux/virtio.h>
31#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053032#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053033#include <linux/workqueue.h>
Rusty Russell31610432007-10-22 11:03:39 +100034#include "hvc_console.h"
35
Amit Shah38edf582010-01-18 19:15:05 +053036/*
37 * This is a global struct for storing common data for all the devices
38 * this driver handles.
39 *
40 * Mainly, it has a linked list for all the consoles in one place so
41 * that callbacks from hvc for get_chars(), put_chars() work properly
42 * across multiple devices and multiple ports per device.
43 */
44struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053045 /* Used for registering chardevs */
46 struct class *class;
47
Amit Shahd99393e2009-12-21 22:36:21 +053048 /* Used for exporting per-port information to debugfs */
49 struct dentry *debugfs_dir;
50
Amit Shah6bdf2af2010-09-02 18:11:49 +053051 /* List of all the devices we're handling */
52 struct list_head portdevs;
53
Amit Shahfb08bd22009-12-21 21:36:04 +053054 /* Number of devices this driver is handling */
55 unsigned int index;
56
Rusty Russelld8a02bd2010-01-18 19:15:06 +053057 /*
58 * This is used to keep track of the number of hvc consoles
59 * spawned by this driver. This number is given as the first
60 * argument to hvc_alloc(). To correctly map an initial
61 * console spawned via hvc_instantiate to the console being
62 * hooked up via hvc_alloc, we need to pass the same vtermno.
63 *
64 * We also just assume the first console being initialised was
65 * the first one that got used as the initial console.
66 */
67 unsigned int next_vtermno;
68
Amit Shah38edf582010-01-18 19:15:05 +053069 /* All the console devices handled by this driver */
70 struct list_head consoles;
71};
72static struct ports_driver_data pdrvdata;
73
74DEFINE_SPINLOCK(pdrvdata_lock);
75
Amit Shah4f23c572010-01-18 19:15:09 +053076/* This struct holds information that's relevant only for console ports */
77struct console {
78 /* We'll place all consoles in a list in the pdrvdata struct */
79 struct list_head list;
80
81 /* The hvc device associated with this console port */
82 struct hvc_struct *hvc;
83
Amit Shah97788292010-05-06 02:05:08 +053084 /* The size of the console */
85 struct winsize ws;
86
Amit Shah4f23c572010-01-18 19:15:09 +053087 /*
88 * This number identifies the number that we used to register
89 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
90 * number passed on by the hvc callbacks to us to
91 * differentiate between the other console ports handled by
92 * this driver
93 */
94 u32 vtermno;
95};
96
Amit Shahfdb9a052010-01-18 19:15:01 +053097struct port_buffer {
98 char *buf;
99
100 /* size of the buffer in *buf above */
101 size_t size;
102
103 /* used length of the buffer */
104 size_t len;
105 /* offset in the buf from which to consume data */
106 size_t offset;
107};
108
Amit Shah17634ba2009-12-21 21:03:25 +0530109/*
110 * This is a per-device struct that stores data common to all the
111 * ports for that device (vdev->priv).
112 */
113struct ports_device {
Amit Shah6bdf2af2010-09-02 18:11:49 +0530114 /* Next portdev in the list, head is in the pdrvdata struct */
115 struct list_head list;
116
Amit Shah17634ba2009-12-21 21:03:25 +0530117 /*
118 * Workqueue handlers where we process deferred work after
119 * notification
120 */
121 struct work_struct control_work;
122
123 struct list_head ports;
124
125 /* To protect the list of ports */
126 spinlock_t ports_lock;
127
128 /* To protect the vq operations for the control channel */
129 spinlock_t cvq_lock;
130
131 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600132 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530133
134 /* The virtio device we're associated with */
135 struct virtio_device *vdev;
136
137 /*
138 * A couple of virtqueues for the control channel: one for
139 * guest->host transfers, one for host->guest transfers
140 */
141 struct virtqueue *c_ivq, *c_ovq;
142
143 /* Array of per-port IO virtqueues */
144 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530145
146 /* Used for numbering devices for sysfs and debugfs */
147 unsigned int drv_index;
148
149 /* Major number for this device. Ports will be created as minors. */
150 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530151};
152
Amit Shah1c85bf32010-01-18 19:15:07 +0530153/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530154struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530155 /* Next port in the list, head is in the ports_device */
156 struct list_head list;
157
Amit Shah1c85bf32010-01-18 19:15:07 +0530158 /* Pointer to the parent virtio_console device */
159 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530160
161 /* The current buffer from which data has to be fed to readers */
162 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000163
Amit Shah203baab2010-01-18 19:15:12 +0530164 /*
165 * To protect the operations on the in_vq associated with this
166 * port. Has to be a spinlock because it can be called from
167 * interrupt context (get_char()).
168 */
169 spinlock_t inbuf_lock;
170
Amit Shahcdfadfc2010-05-19 22:15:50 -0600171 /* Protect the operations on the out_vq. */
172 spinlock_t outvq_lock;
173
Amit Shah1c85bf32010-01-18 19:15:07 +0530174 /* The IO vqs for this port */
175 struct virtqueue *in_vq, *out_vq;
176
Amit Shahd99393e2009-12-21 22:36:21 +0530177 /* File in the debugfs directory that exposes this port's information */
178 struct dentry *debugfs_file;
179
Amit Shah4f23c572010-01-18 19:15:09 +0530180 /*
181 * The entries in this struct will be valid if this port is
182 * hooked up to an hvc console
183 */
184 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530185
Amit Shahfb08bd22009-12-21 21:36:04 +0530186 /* Each port associates with a separate char device */
Amit Shahd22a6982010-09-02 18:20:59 +0530187 struct cdev *cdev;
Amit Shahfb08bd22009-12-21 21:36:04 +0530188 struct device *dev;
189
Amit Shahb353a6b2010-09-02 18:38:29 +0530190 /* Reference-counting to handle port hot-unplugs and file operations */
191 struct kref kref;
192
Amit Shah2030fa42009-12-21 21:49:30 +0530193 /* A waitqueue for poll() or blocking read operations */
194 wait_queue_head_t waitqueue;
195
Amit Shah431edb82009-12-21 21:57:40 +0530196 /* The 'name' of the port that we expose via sysfs properties */
197 char *name;
198
Amit Shah3eae0ad2010-09-02 18:47:52 +0530199 /* We can notify apps of host connect / disconnect events via SIGIO */
200 struct fasync_struct *async_queue;
201
Amit Shah17634ba2009-12-21 21:03:25 +0530202 /* The 'id' to identify the port with the Host */
203 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530204
Amit Shahcdfadfc2010-05-19 22:15:50 -0600205 bool outvq_full;
206
Amit Shah2030fa42009-12-21 21:49:30 +0530207 /* Is the host device open */
208 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530209
210 /* We should allow only one process to open a port */
211 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530212};
Rusty Russell31610432007-10-22 11:03:39 +1000213
Rusty Russell971f3392010-01-18 19:14:56 +0530214/* This is the very early arch-specified put chars function. */
215static int (*early_put_chars)(u32, const char *, int);
216
Amit Shah38edf582010-01-18 19:15:05 +0530217static struct port *find_port_by_vtermno(u32 vtermno)
218{
219 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530220 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530221 unsigned long flags;
222
223 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530224 list_for_each_entry(cons, &pdrvdata.consoles, list) {
225 if (cons->vtermno == vtermno) {
226 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530227 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530228 }
Amit Shah38edf582010-01-18 19:15:05 +0530229 }
230 port = NULL;
231out:
232 spin_unlock_irqrestore(&pdrvdata_lock, flags);
233 return port;
234}
235
Amit Shah04950cd2010-09-02 18:20:58 +0530236static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev,
237 dev_t dev)
238{
239 struct port *port;
240 unsigned long flags;
241
242 spin_lock_irqsave(&portdev->ports_lock, flags);
243 list_for_each_entry(port, &portdev->ports, list)
Amit Shahd22a6982010-09-02 18:20:59 +0530244 if (port->cdev->dev == dev)
Amit Shah04950cd2010-09-02 18:20:58 +0530245 goto out;
246 port = NULL;
247out:
248 spin_unlock_irqrestore(&portdev->ports_lock, flags);
249
250 return port;
251}
252
253static struct port *find_port_by_devt(dev_t dev)
254{
255 struct ports_device *portdev;
256 struct port *port;
257 unsigned long flags;
258
259 spin_lock_irqsave(&pdrvdata_lock, flags);
260 list_for_each_entry(portdev, &pdrvdata.portdevs, list) {
261 port = find_port_by_devt_in_portdev(portdev, dev);
262 if (port)
263 goto out;
264 }
265 port = NULL;
266out:
267 spin_unlock_irqrestore(&pdrvdata_lock, flags);
268 return port;
269}
270
Amit Shah17634ba2009-12-21 21:03:25 +0530271static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
272{
273 struct port *port;
274 unsigned long flags;
275
276 spin_lock_irqsave(&portdev->ports_lock, flags);
277 list_for_each_entry(port, &portdev->ports, list)
278 if (port->id == id)
279 goto out;
280 port = NULL;
281out:
282 spin_unlock_irqrestore(&portdev->ports_lock, flags);
283
284 return port;
285}
286
Amit Shah203baab2010-01-18 19:15:12 +0530287static struct port *find_port_by_vq(struct ports_device *portdev,
288 struct virtqueue *vq)
289{
290 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530291 unsigned long flags;
292
Amit Shah17634ba2009-12-21 21:03:25 +0530293 spin_lock_irqsave(&portdev->ports_lock, flags);
294 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530295 if (port->in_vq == vq || port->out_vq == vq)
296 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530297 port = NULL;
298out:
Amit Shah17634ba2009-12-21 21:03:25 +0530299 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530300 return port;
301}
302
Amit Shah17634ba2009-12-21 21:03:25 +0530303static bool is_console_port(struct port *port)
304{
305 if (port->cons.hvc)
306 return true;
307 return false;
308}
309
310static inline bool use_multiport(struct ports_device *portdev)
311{
312 /*
313 * This condition can be true when put_chars is called from
314 * early_init
315 */
316 if (!portdev->vdev)
317 return 0;
318 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
319}
320
Amit Shahfdb9a052010-01-18 19:15:01 +0530321static void free_buf(struct port_buffer *buf)
322{
323 kfree(buf->buf);
324 kfree(buf);
325}
326
327static struct port_buffer *alloc_buf(size_t buf_size)
328{
329 struct port_buffer *buf;
330
331 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
332 if (!buf)
333 goto fail;
334 buf->buf = kzalloc(buf_size, GFP_KERNEL);
335 if (!buf->buf)
336 goto free_buf;
337 buf->len = 0;
338 buf->offset = 0;
339 buf->size = buf_size;
340 return buf;
341
342free_buf:
343 kfree(buf);
344fail:
345 return NULL;
346}
347
Amit Shaha3cde442010-01-18 19:15:03 +0530348/* Callers should take appropriate locks */
349static void *get_inbuf(struct port *port)
350{
351 struct port_buffer *buf;
352 struct virtqueue *vq;
353 unsigned int len;
354
355 vq = port->in_vq;
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300356 buf = virtqueue_get_buf(vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530357 if (buf) {
358 buf->len = len;
359 buf->offset = 0;
360 }
361 return buf;
362}
363
Rusty Russella23ea922010-01-18 19:14:55 +0530364/*
Amit Shahe27b5192010-01-18 19:15:02 +0530365 * Create a scatter-gather list representing our input buffer and put
366 * it in the queue.
367 *
368 * Callers should take appropriate locks.
369 */
Amit Shah203baab2010-01-18 19:15:12 +0530370static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530371{
372 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530373 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530374
Amit Shahe27b5192010-01-18 19:15:02 +0530375 sg_init_one(sg, buf->buf, buf->size);
376
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300377 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
378 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530379 return ret;
380}
381
Amit Shah88f251a2009-12-21 22:15:30 +0530382/* Discard any unread data this port has. Callers lockers. */
383static void discard_port_data(struct port *port)
384{
385 struct port_buffer *buf;
386 struct virtqueue *vq;
387 unsigned int len;
Amit Shahd6933562010-02-12 10:32:18 +0530388 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530389
390 vq = port->in_vq;
391 if (port->inbuf)
392 buf = port->inbuf;
393 else
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300394 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530395
Amit Shahd6933562010-02-12 10:32:18 +0530396 ret = 0;
397 while (buf) {
398 if (add_inbuf(vq, buf) < 0) {
399 ret++;
400 free_buf(buf);
401 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300402 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530403 }
Amit Shah88f251a2009-12-21 22:15:30 +0530404 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530405 if (ret)
406 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
407 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530408}
409
Amit Shah203baab2010-01-18 19:15:12 +0530410static bool port_has_data(struct port *port)
411{
412 unsigned long flags;
413 bool ret;
414
Amit Shah203baab2010-01-18 19:15:12 +0530415 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +0530416 if (port->inbuf) {
Amit Shah203baab2010-01-18 19:15:12 +0530417 ret = true;
Amit Shahd6933562010-02-12 10:32:18 +0530418 goto out;
419 }
420 port->inbuf = get_inbuf(port);
421 if (port->inbuf) {
422 ret = true;
423 goto out;
424 }
425 ret = false;
426out:
Amit Shah203baab2010-01-18 19:15:12 +0530427 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530428 return ret;
429}
430
Amit Shah3425e702010-05-19 22:15:46 -0600431static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
432 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530433{
434 struct scatterlist sg[1];
435 struct virtio_console_control cpkt;
436 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530437 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530438
Amit Shah3425e702010-05-19 22:15:46 -0600439 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530440 return 0;
441
Amit Shah3425e702010-05-19 22:15:46 -0600442 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530443 cpkt.event = event;
444 cpkt.value = value;
445
Amit Shah3425e702010-05-19 22:15:46 -0600446 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530447
448 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300449 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
450 virtqueue_kick(vq);
451 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530452 cpu_relax();
453 }
454 return 0;
455}
456
Amit Shah3425e702010-05-19 22:15:46 -0600457static ssize_t send_control_msg(struct port *port, unsigned int event,
458 unsigned int value)
459{
Amit Shah84ec06c2010-09-02 18:11:42 +0530460 /* Did the port get unplugged before userspace closed it? */
461 if (port->portdev)
462 return __send_control_msg(port->portdev, port->id, event, value);
463 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600464}
465
Amit Shahcdfadfc2010-05-19 22:15:50 -0600466/* Callers must take the port->outvq_lock */
467static void reclaim_consumed_buffers(struct port *port)
468{
469 void *buf;
470 unsigned int len;
471
472 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
473 kfree(buf);
474 port->outvq_full = false;
475 }
476}
477
478static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
479 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530480{
481 struct scatterlist sg[1];
482 struct virtqueue *out_vq;
483 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600484 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530485 unsigned int len;
486
487 out_vq = port->out_vq;
488
Amit Shahcdfadfc2010-05-19 22:15:50 -0600489 spin_lock_irqsave(&port->outvq_lock, flags);
490
491 reclaim_consumed_buffers(port);
492
Amit Shahf997f00b2009-12-21 17:28:51 +0530493 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300494 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530495
496 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300497 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530498
499 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600500 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600501 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530502 }
503
Amit Shahcdfadfc2010-05-19 22:15:50 -0600504 if (ret == 0)
505 port->outvq_full = true;
506
507 if (nonblock)
508 goto done;
509
510 /*
511 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e62010-10-20 13:45:43 +1030512 * sent. This is done for data from the hvc_console; the tty
513 * operations are performed with spinlocks held so we can't
514 * sleep here. An alternative would be to copy the data to a
515 * buffer and relax the spinning requirement. The downside is
516 * we need to kmalloc a GFP_ATOMIC buffer each time the
517 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600518 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300519 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530520 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600521done:
522 spin_unlock_irqrestore(&port->outvq_lock, flags);
523 /*
524 * We're expected to return the amount of data we wrote -- all
525 * of it
526 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600527 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530528}
529
Amit Shah203baab2010-01-18 19:15:12 +0530530/*
531 * Give out the data that's requested from the buffer that we have
532 * queued up.
533 */
Amit Shahb766cee2009-12-21 21:26:45 +0530534static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
535 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530536{
537 struct port_buffer *buf;
538 unsigned long flags;
539
540 if (!out_count || !port_has_data(port))
541 return 0;
542
543 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530544 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530545
Amit Shahb766cee2009-12-21 21:26:45 +0530546 if (to_user) {
547 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530548
Amit Shahb766cee2009-12-21 21:26:45 +0530549 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
550 if (ret)
551 return -EFAULT;
552 } else {
553 memcpy(out_buf, buf->buf + buf->offset, out_count);
554 }
555
Amit Shah203baab2010-01-18 19:15:12 +0530556 buf->offset += out_count;
557
558 if (buf->offset == buf->len) {
559 /*
560 * We're done using all the data in this buffer.
561 * Re-queue so that the Host can send us more data.
562 */
563 spin_lock_irqsave(&port->inbuf_lock, flags);
564 port->inbuf = NULL;
565
566 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530567 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530568
569 spin_unlock_irqrestore(&port->inbuf_lock, flags);
570 }
Amit Shahb766cee2009-12-21 21:26:45 +0530571 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530572 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530573}
574
Amit Shah2030fa42009-12-21 21:49:30 +0530575/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600576static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530577{
Amit Shah3709ea72010-09-02 18:11:43 +0530578 if (!port->guest_connected) {
579 /* Port got hot-unplugged. Let's exit. */
580 return false;
581 }
Amit Shah60caacd2010-05-19 22:15:49 -0600582 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530583}
584
Amit Shahcdfadfc2010-05-19 22:15:50 -0600585static bool will_write_block(struct port *port)
586{
587 bool ret;
588
Amit Shah60e5e0b2010-05-27 13:24:40 +0530589 if (!port->guest_connected) {
590 /* Port got hot-unplugged. Let's exit. */
591 return false;
592 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600593 if (!port->host_connected)
594 return true;
595
596 spin_lock_irq(&port->outvq_lock);
597 /*
598 * Check if the Host has consumed any buffers since we last
599 * sent data (this is only applicable for nonblocking ports).
600 */
601 reclaim_consumed_buffers(port);
602 ret = port->outvq_full;
603 spin_unlock_irq(&port->outvq_lock);
604
605 return ret;
606}
607
Amit Shah2030fa42009-12-21 21:49:30 +0530608static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
609 size_t count, loff_t *offp)
610{
611 struct port *port;
612 ssize_t ret;
613
614 port = filp->private_data;
615
616 if (!port_has_data(port)) {
617 /*
618 * If nothing's connected on the host just return 0 in
619 * case of list_empty; this tells the userspace app
620 * that there's no connection
621 */
622 if (!port->host_connected)
623 return 0;
624 if (filp->f_flags & O_NONBLOCK)
625 return -EAGAIN;
626
627 ret = wait_event_interruptible(port->waitqueue,
Amit Shah60caacd2010-05-19 22:15:49 -0600628 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530629 if (ret < 0)
630 return ret;
631 }
Amit Shahb3dddb92010-09-02 18:11:45 +0530632 /* Port got hot-unplugged. */
633 if (!port->guest_connected)
634 return -ENODEV;
Amit Shah2030fa42009-12-21 21:49:30 +0530635 /*
636 * We could've received a disconnection message while we were
637 * waiting for more data.
638 *
639 * This check is not clubbed in the if() statement above as we
640 * might receive some data as well as the host could get
641 * disconnected after we got woken up from our wait. So we
642 * really want to give off whatever data we have and only then
643 * check for host_connected.
644 */
645 if (!port_has_data(port) && !port->host_connected)
646 return 0;
647
648 return fill_readbuf(port, ubuf, count, true);
649}
650
651static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
652 size_t count, loff_t *offp)
653{
654 struct port *port;
655 char *buf;
656 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600657 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530658
Amit Shah65745422010-09-14 13:26:16 +0530659 /* Userspace could be out to fool us */
660 if (!count)
661 return 0;
662
Amit Shah2030fa42009-12-21 21:49:30 +0530663 port = filp->private_data;
664
Amit Shahcdfadfc2010-05-19 22:15:50 -0600665 nonblock = filp->f_flags & O_NONBLOCK;
666
667 if (will_write_block(port)) {
668 if (nonblock)
669 return -EAGAIN;
670
671 ret = wait_event_interruptible(port->waitqueue,
672 !will_write_block(port));
673 if (ret < 0)
674 return ret;
675 }
Amit Shahf4028112010-09-02 18:11:46 +0530676 /* Port got hot-unplugged. */
677 if (!port->guest_connected)
678 return -ENODEV;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600679
Amit Shah2030fa42009-12-21 21:49:30 +0530680 count = min((size_t)(32 * 1024), count);
681
682 buf = kmalloc(count, GFP_KERNEL);
683 if (!buf)
684 return -ENOMEM;
685
686 ret = copy_from_user(buf, ubuf, count);
687 if (ret) {
688 ret = -EFAULT;
689 goto free_buf;
690 }
691
Amit Shah531295e62010-10-20 13:45:43 +1030692 /*
693 * We now ask send_buf() to not spin for generic ports -- we
694 * can re-use the same code path that non-blocking file
695 * descriptors take for blocking file descriptors since the
696 * wait is already done and we're certain the write will go
697 * through to the host.
698 */
699 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600700 ret = send_buf(port, buf, count, nonblock);
701
702 if (nonblock && ret > 0)
703 goto out;
704
Amit Shah2030fa42009-12-21 21:49:30 +0530705free_buf:
706 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600707out:
Amit Shah2030fa42009-12-21 21:49:30 +0530708 return ret;
709}
710
711static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
712{
713 struct port *port;
714 unsigned int ret;
715
716 port = filp->private_data;
717 poll_wait(filp, &port->waitqueue, wait);
718
Amit Shah8529a502010-09-02 18:11:44 +0530719 if (!port->guest_connected) {
720 /* Port got unplugged */
721 return POLLHUP;
722 }
Amit Shah2030fa42009-12-21 21:49:30 +0530723 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530724 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530725 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600726 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530727 ret |= POLLOUT;
728 if (!port->host_connected)
729 ret |= POLLHUP;
730
731 return ret;
732}
733
Amit Shahb353a6b2010-09-02 18:38:29 +0530734static void remove_port(struct kref *kref);
735
Amit Shah2030fa42009-12-21 21:49:30 +0530736static int port_fops_release(struct inode *inode, struct file *filp)
737{
738 struct port *port;
739
740 port = filp->private_data;
741
742 /* Notify host of port being closed */
743 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
744
Amit Shah88f251a2009-12-21 22:15:30 +0530745 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530746 port->guest_connected = false;
747
Amit Shah88f251a2009-12-21 22:15:30 +0530748 discard_port_data(port);
749
750 spin_unlock_irq(&port->inbuf_lock);
751
Amit Shahcdfadfc2010-05-19 22:15:50 -0600752 spin_lock_irq(&port->outvq_lock);
753 reclaim_consumed_buffers(port);
754 spin_unlock_irq(&port->outvq_lock);
755
Amit Shahb353a6b2010-09-02 18:38:29 +0530756 /*
757 * Locks aren't necessary here as a port can't be opened after
758 * unplug, and if a port isn't unplugged, a kref would already
759 * exist for the port. Plus, taking ports_lock here would
760 * create a dependency on other locks taken by functions
761 * inside remove_port if we're the last holder of the port,
762 * creating many problems.
763 */
764 kref_put(&port->kref, remove_port);
765
Amit Shah2030fa42009-12-21 21:49:30 +0530766 return 0;
767}
768
769static int port_fops_open(struct inode *inode, struct file *filp)
770{
771 struct cdev *cdev = inode->i_cdev;
772 struct port *port;
Amit Shah8ad37e82010-09-02 18:11:48 +0530773 int ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530774
Amit Shah04950cd2010-09-02 18:20:58 +0530775 port = find_port_by_devt(cdev->dev);
Amit Shah2030fa42009-12-21 21:49:30 +0530776 filp->private_data = port;
777
Amit Shahb353a6b2010-09-02 18:38:29 +0530778 /* Prevent against a port getting hot-unplugged at the same time */
779 spin_lock_irq(&port->portdev->ports_lock);
780 kref_get(&port->kref);
781 spin_unlock_irq(&port->portdev->ports_lock);
782
Amit Shah2030fa42009-12-21 21:49:30 +0530783 /*
784 * Don't allow opening of console port devices -- that's done
785 * via /dev/hvc
786 */
Amit Shah8ad37e82010-09-02 18:11:48 +0530787 if (is_console_port(port)) {
788 ret = -ENXIO;
789 goto out;
790 }
Amit Shah2030fa42009-12-21 21:49:30 +0530791
Amit Shah3c7969c2009-11-26 11:25:38 +0530792 /* Allow only one process to open a particular port at a time */
793 spin_lock_irq(&port->inbuf_lock);
794 if (port->guest_connected) {
795 spin_unlock_irq(&port->inbuf_lock);
Amit Shah8ad37e82010-09-02 18:11:48 +0530796 ret = -EMFILE;
797 goto out;
Amit Shah3c7969c2009-11-26 11:25:38 +0530798 }
799
800 port->guest_connected = true;
801 spin_unlock_irq(&port->inbuf_lock);
802
Amit Shahcdfadfc2010-05-19 22:15:50 -0600803 spin_lock_irq(&port->outvq_lock);
804 /*
805 * There might be a chance that we missed reclaiming a few
806 * buffers in the window of the port getting previously closed
807 * and opening now.
808 */
809 reclaim_consumed_buffers(port);
810 spin_unlock_irq(&port->outvq_lock);
811
Amit Shah2030fa42009-12-21 21:49:30 +0530812 /* Notify host of port being opened */
813 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
814
815 return 0;
Amit Shah8ad37e82010-09-02 18:11:48 +0530816out:
Amit Shahb353a6b2010-09-02 18:38:29 +0530817 kref_put(&port->kref, remove_port);
Amit Shah8ad37e82010-09-02 18:11:48 +0530818 return ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530819}
820
Amit Shah3eae0ad2010-09-02 18:47:52 +0530821static int port_fops_fasync(int fd, struct file *filp, int mode)
822{
823 struct port *port;
824
825 port = filp->private_data;
826 return fasync_helper(fd, filp, mode, &port->async_queue);
827}
828
Amit Shah2030fa42009-12-21 21:49:30 +0530829/*
830 * The file operations that we support: programs in the guest can open
831 * a console device, read from it, write to it, poll for data and
832 * close it. The devices are at
833 * /dev/vport<device number>p<port number>
834 */
835static const struct file_operations port_fops = {
836 .owner = THIS_MODULE,
837 .open = port_fops_open,
838 .read = port_fops_read,
839 .write = port_fops_write,
840 .poll = port_fops_poll,
841 .release = port_fops_release,
Amit Shah3eae0ad2010-09-02 18:47:52 +0530842 .fasync = port_fops_fasync,
Amit Shah2030fa42009-12-21 21:49:30 +0530843};
844
Amit Shahe27b5192010-01-18 19:15:02 +0530845/*
Rusty Russella23ea922010-01-18 19:14:55 +0530846 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000847 *
Rusty Russella23ea922010-01-18 19:14:55 +0530848 * We turn the characters into a scatter-gather list, add it to the
849 * output queue and then kick the Host. Then we sit here waiting for
850 * it to finish: inefficient in theory, but in practice
851 * implementations will do it immediately (lguest's Launcher does).
852 */
Rusty Russell31610432007-10-22 11:03:39 +1000853static int put_chars(u32 vtermno, const char *buf, int count)
854{
Rusty Russell21206ed2010-01-18 19:15:00 +0530855 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530856
François Diakhaté162a6892010-03-23 18:23:15 +0530857 if (unlikely(early_put_chars))
858 return early_put_chars(vtermno, buf, count);
859
Amit Shah38edf582010-01-18 19:15:05 +0530860 port = find_port_by_vtermno(vtermno);
861 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600862 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000863
Amit Shahcdfadfc2010-05-19 22:15:50 -0600864 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000865}
866
Rusty Russella23ea922010-01-18 19:14:55 +0530867/*
Rusty Russella23ea922010-01-18 19:14:55 +0530868 * get_chars() is the callback from the hvc_console infrastructure
869 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000870 *
Amit Shah203baab2010-01-18 19:15:12 +0530871 * We call out to fill_readbuf that gets us the required data from the
872 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530873 */
Rusty Russell31610432007-10-22 11:03:39 +1000874static int get_chars(u32 vtermno, char *buf, int count)
875{
Rusty Russell21206ed2010-01-18 19:15:00 +0530876 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000877
Amit Shah6dc69f972010-05-19 22:15:47 -0600878 /* If we've not set up the port yet, we have no input to give. */
879 if (unlikely(early_put_chars))
880 return 0;
881
Amit Shah38edf582010-01-18 19:15:05 +0530882 port = find_port_by_vtermno(vtermno);
883 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600884 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530885
886 /* If we don't have an input queue yet, we can't get input. */
887 BUG_ON(!port->in_vq);
888
Amit Shahb766cee2009-12-21 21:26:45 +0530889 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000890}
Rusty Russell31610432007-10-22 11:03:39 +1000891
Amit Shahcb06e362010-01-18 19:15:08 +0530892static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100893{
Amit Shahcb06e362010-01-18 19:15:08 +0530894 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100895
Amit Shah2de16a42010-03-19 17:36:44 +0530896 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530897 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530898 return;
899
Amit Shahcb06e362010-01-18 19:15:08 +0530900 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530901 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
902 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100903}
904
Amit Shah38edf582010-01-18 19:15:05 +0530905/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200906static int notifier_add_vio(struct hvc_struct *hp, int data)
907{
Amit Shah38edf582010-01-18 19:15:05 +0530908 struct port *port;
909
910 port = find_port_by_vtermno(hp->vtermno);
911 if (!port)
912 return -EINVAL;
913
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200914 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530915 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100916
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200917 return 0;
918}
919
920static void notifier_del_vio(struct hvc_struct *hp, int data)
921{
922 hp->irq_requested = 0;
923}
924
Amit Shah17634ba2009-12-21 21:03:25 +0530925/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530926static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530927 .get_chars = get_chars,
928 .put_chars = put_chars,
929 .notifier_add = notifier_add_vio,
930 .notifier_del = notifier_del_vio,
931 .notifier_hangup = notifier_del_vio,
932};
933
934/*
935 * Console drivers are initialized very early so boot messages can go
936 * out, so we do things slightly differently from the generic virtio
937 * initialization of the net and block drivers.
938 *
939 * At this stage, the console is output-only. It's too early to set
940 * up a virtqueue, so we let the drivers do some boutique early-output
941 * thing.
942 */
943int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
944{
945 early_put_chars = put_chars;
946 return hvc_instantiate(0, 0, &hv_ops);
947}
948
Amit Shah17634ba2009-12-21 21:03:25 +0530949int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530950{
951 int ret;
952
953 /*
954 * The Host's telling us this port is a console port. Hook it
955 * up with an hvc console.
956 *
957 * To set up and manage our virtual console, we call
958 * hvc_alloc().
959 *
960 * The first argument of hvc_alloc() is the virtual console
961 * number. The second argument is the parameter for the
962 * notification mechanism (like irq number). We currently
963 * leave this as zero, virtqueues have implicit notifications.
964 *
965 * The third argument is a "struct hv_ops" containing the
966 * put_chars() get_chars(), notifier_add() and notifier_del()
967 * pointers. The final argument is the output buffer size: we
968 * can do any size, so we put PAGE_SIZE here.
969 */
970 port->cons.vtermno = pdrvdata.next_vtermno;
971
972 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
973 if (IS_ERR(port->cons.hvc)) {
974 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530975 dev_err(port->dev,
976 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530977 port->cons.hvc = NULL;
978 return ret;
979 }
980 spin_lock_irq(&pdrvdata_lock);
981 pdrvdata.next_vtermno++;
982 list_add_tail(&port->cons.list, &pdrvdata.consoles);
983 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530984 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530985
Amit Shah1d051602010-05-19 22:15:49 -0600986 /*
987 * Start using the new console output if this is the first
988 * console to come up.
989 */
990 if (early_put_chars)
991 early_put_chars = NULL;
992
Amit Shah2030fa42009-12-21 21:49:30 +0530993 /* Notify host of port being opened */
994 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
995
Amit Shahcfa6d372010-01-18 19:15:10 +0530996 return 0;
997}
998
Amit Shah431edb82009-12-21 21:57:40 +0530999static ssize_t show_port_name(struct device *dev,
1000 struct device_attribute *attr, char *buffer)
1001{
1002 struct port *port;
1003
1004 port = dev_get_drvdata(dev);
1005
1006 return sprintf(buffer, "%s\n", port->name);
1007}
1008
1009static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
1010
1011static struct attribute *port_sysfs_entries[] = {
1012 &dev_attr_name.attr,
1013 NULL
1014};
1015
1016static struct attribute_group port_attribute_group = {
1017 .name = NULL, /* put in device directory */
1018 .attrs = port_sysfs_entries,
1019};
1020
Amit Shahd99393e2009-12-21 22:36:21 +05301021static int debugfs_open(struct inode *inode, struct file *filp)
1022{
1023 filp->private_data = inode->i_private;
1024 return 0;
1025}
1026
1027static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
1028 size_t count, loff_t *offp)
1029{
1030 struct port *port;
1031 char *buf;
1032 ssize_t ret, out_offset, out_count;
1033
1034 out_count = 1024;
1035 buf = kmalloc(out_count, GFP_KERNEL);
1036 if (!buf)
1037 return -ENOMEM;
1038
1039 port = filp->private_data;
1040 out_offset = 0;
1041 out_offset += snprintf(buf + out_offset, out_count,
1042 "name: %s\n", port->name ? port->name : "");
1043 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1044 "guest_connected: %d\n", port->guest_connected);
1045 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1046 "host_connected: %d\n", port->host_connected);
1047 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahcdfadfc2010-05-19 22:15:50 -06001048 "outvq_full: %d\n", port->outvq_full);
1049 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahd99393e2009-12-21 22:36:21 +05301050 "is_console: %s\n",
1051 is_console_port(port) ? "yes" : "no");
1052 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1053 "console_vtermno: %u\n", port->cons.vtermno);
1054
1055 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
1056 kfree(buf);
1057 return ret;
1058}
1059
1060static const struct file_operations port_debugfs_ops = {
1061 .owner = THIS_MODULE,
1062 .open = debugfs_open,
1063 .read = debugfs_read,
1064};
1065
Amit Shah97788292010-05-06 02:05:08 +05301066static void set_console_size(struct port *port, u16 rows, u16 cols)
1067{
1068 if (!port || !is_console_port(port))
1069 return;
1070
1071 port->cons.ws.ws_row = rows;
1072 port->cons.ws.ws_col = cols;
1073}
1074
Amit Shahc446f8f2010-05-19 22:15:48 -06001075static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
1076{
1077 struct port_buffer *buf;
1078 unsigned int nr_added_bufs;
1079 int ret;
1080
1081 nr_added_bufs = 0;
1082 do {
1083 buf = alloc_buf(PAGE_SIZE);
1084 if (!buf)
1085 break;
1086
1087 spin_lock_irq(lock);
1088 ret = add_inbuf(vq, buf);
1089 if (ret < 0) {
1090 spin_unlock_irq(lock);
1091 free_buf(buf);
1092 break;
1093 }
1094 nr_added_bufs++;
1095 spin_unlock_irq(lock);
1096 } while (ret > 0);
1097
1098 return nr_added_bufs;
1099}
1100
Amit Shah3eae0ad2010-09-02 18:47:52 +05301101static void send_sigio_to_port(struct port *port)
1102{
1103 if (port->async_queue && port->guest_connected)
1104 kill_fasync(&port->async_queue, SIGIO, POLL_OUT);
1105}
1106
Amit Shahc446f8f2010-05-19 22:15:48 -06001107static int add_port(struct ports_device *portdev, u32 id)
1108{
1109 char debugfs_name[16];
1110 struct port *port;
1111 struct port_buffer *buf;
1112 dev_t devt;
1113 unsigned int nr_added_bufs;
1114 int err;
1115
1116 port = kmalloc(sizeof(*port), GFP_KERNEL);
1117 if (!port) {
1118 err = -ENOMEM;
1119 goto fail;
1120 }
Amit Shahb353a6b2010-09-02 18:38:29 +05301121 kref_init(&port->kref);
Amit Shahc446f8f2010-05-19 22:15:48 -06001122
1123 port->portdev = portdev;
1124 port->id = id;
1125
1126 port->name = NULL;
1127 port->inbuf = NULL;
1128 port->cons.hvc = NULL;
Amit Shah3eae0ad2010-09-02 18:47:52 +05301129 port->async_queue = NULL;
Amit Shahc446f8f2010-05-19 22:15:48 -06001130
Amit Shah97788292010-05-06 02:05:08 +05301131 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
1132
Amit Shahc446f8f2010-05-19 22:15:48 -06001133 port->host_connected = port->guest_connected = false;
1134
Amit Shahcdfadfc2010-05-19 22:15:50 -06001135 port->outvq_full = false;
1136
Amit Shahc446f8f2010-05-19 22:15:48 -06001137 port->in_vq = portdev->in_vqs[port->id];
1138 port->out_vq = portdev->out_vqs[port->id];
1139
Amit Shahd22a6982010-09-02 18:20:59 +05301140 port->cdev = cdev_alloc();
1141 if (!port->cdev) {
1142 dev_err(&port->portdev->vdev->dev, "Error allocating cdev\n");
1143 err = -ENOMEM;
1144 goto free_port;
1145 }
1146 port->cdev->ops = &port_fops;
Amit Shahc446f8f2010-05-19 22:15:48 -06001147
1148 devt = MKDEV(portdev->chr_major, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301149 err = cdev_add(port->cdev, devt, 1);
Amit Shahc446f8f2010-05-19 22:15:48 -06001150 if (err < 0) {
1151 dev_err(&port->portdev->vdev->dev,
1152 "Error %d adding cdev for port %u\n", err, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301153 goto free_cdev;
Amit Shahc446f8f2010-05-19 22:15:48 -06001154 }
1155 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1156 devt, port, "vport%up%u",
1157 port->portdev->drv_index, id);
1158 if (IS_ERR(port->dev)) {
1159 err = PTR_ERR(port->dev);
1160 dev_err(&port->portdev->vdev->dev,
1161 "Error %d creating device for port %u\n",
1162 err, id);
1163 goto free_cdev;
1164 }
1165
1166 spin_lock_init(&port->inbuf_lock);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001167 spin_lock_init(&port->outvq_lock);
Amit Shahc446f8f2010-05-19 22:15:48 -06001168 init_waitqueue_head(&port->waitqueue);
1169
1170 /* Fill the in_vq with buffers so the host can send us data. */
1171 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1172 if (!nr_added_bufs) {
1173 dev_err(port->dev, "Error allocating inbufs\n");
1174 err = -ENOMEM;
1175 goto free_device;
1176 }
1177
1178 /*
1179 * If we're not using multiport support, this has to be a console port
1180 */
1181 if (!use_multiport(port->portdev)) {
1182 err = init_port_console(port);
1183 if (err)
1184 goto free_inbufs;
1185 }
1186
1187 spin_lock_irq(&portdev->ports_lock);
1188 list_add_tail(&port->list, &port->portdev->ports);
1189 spin_unlock_irq(&portdev->ports_lock);
1190
1191 /*
1192 * Tell the Host we're set so that it can send us various
1193 * configuration parameters for this port (eg, port name,
1194 * caching, whether this is a console port, etc.)
1195 */
1196 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1197
1198 if (pdrvdata.debugfs_dir) {
1199 /*
1200 * Finally, create the debugfs file that we can use to
1201 * inspect a port's state at any time
1202 */
1203 sprintf(debugfs_name, "vport%up%u",
1204 port->portdev->drv_index, id);
1205 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1206 pdrvdata.debugfs_dir,
1207 port,
1208 &port_debugfs_ops);
1209 }
1210 return 0;
1211
1212free_inbufs:
1213 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1214 free_buf(buf);
1215free_device:
1216 device_destroy(pdrvdata.class, port->dev->devt);
1217free_cdev:
Amit Shahd22a6982010-09-02 18:20:59 +05301218 cdev_del(port->cdev);
Amit Shahc446f8f2010-05-19 22:15:48 -06001219free_port:
1220 kfree(port);
1221fail:
1222 /* The host might want to notify management sw about port add failure */
Julia Lawall0643e4c2010-05-15 11:45:53 +02001223 __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shahc446f8f2010-05-19 22:15:48 -06001224 return err;
1225}
1226
Amit Shahb353a6b2010-09-02 18:38:29 +05301227/* No users remain, remove all port-specific data. */
1228static void remove_port(struct kref *kref)
1229{
1230 struct port *port;
1231
1232 port = container_of(kref, struct port, kref);
1233
1234 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1235 device_destroy(pdrvdata.class, port->dev->devt);
1236 cdev_del(port->cdev);
1237
1238 kfree(port->name);
1239
1240 debugfs_remove(port->debugfs_file);
1241
1242 kfree(port);
1243}
1244
1245/*
1246 * Port got unplugged. Remove port from portdev's list and drop the
1247 * kref reference. If no userspace has this port opened, it will
1248 * result in immediate removal the port.
1249 */
1250static void unplug_port(struct port *port)
Amit Shah1f7aa422009-12-21 22:27:31 +05301251{
Amit Shaha9cdd482010-02-12 10:32:15 +05301252 struct port_buffer *buf;
1253
Amit Shahb353a6b2010-09-02 18:38:29 +05301254 spin_lock_irq(&port->portdev->ports_lock);
1255 list_del(&port->list);
1256 spin_unlock_irq(&port->portdev->ports_lock);
1257
Amit Shah00476342010-05-27 13:24:39 +05301258 if (port->guest_connected) {
1259 port->guest_connected = false;
1260 port->host_connected = false;
1261 wake_up_interruptible(&port->waitqueue);
Amit Shah00476342010-05-27 13:24:39 +05301262 }
1263
Amit Shah1f7aa422009-12-21 22:27:31 +05301264 if (is_console_port(port)) {
1265 spin_lock_irq(&pdrvdata_lock);
1266 list_del(&port->cons.list);
1267 spin_unlock_irq(&pdrvdata_lock);
Amit Shah69eb9a92010-05-19 22:15:47 -06001268#if 0
1269 /*
1270 * hvc_remove() not called as removing one hvc port
1271 * results in other hvc ports getting frozen.
1272 *
1273 * Once this is resolved in hvc, this functionality
1274 * will be enabled. Till that is done, the -EPIPE
1275 * return from get_chars() above will help
1276 * hvc_console.c to clean up on ports we remove here.
1277 */
Amit Shah1f7aa422009-12-21 22:27:31 +05301278 hvc_remove(port->cons.hvc);
Amit Shah69eb9a92010-05-19 22:15:47 -06001279#endif
Amit Shah1f7aa422009-12-21 22:27:31 +05301280 }
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 /*
1393 * Skip the size of the header and the cpkt to get the size
1394 * of the name that was sent
1395 */
1396 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1397
1398 port->name = kmalloc(name_size, GFP_KERNEL);
1399 if (!port->name) {
1400 dev_err(port->dev,
1401 "Not enough space to store port name\n");
1402 break;
1403 }
1404 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1405 name_size - 1);
1406 port->name[name_size - 1] = 0;
1407
1408 /*
1409 * Since we only have one sysfs attribute, 'name',
1410 * create it only if we have a name for the port.
1411 */
1412 err = sysfs_create_group(&port->dev->kobj,
1413 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301414 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301415 dev_err(port->dev,
1416 "Error %d creating sysfs device attributes\n",
1417 err);
Amit Shahec642132010-03-19 17:36:43 +05301418 } else {
1419 /*
1420 * Generate a udev event so that appropriate
1421 * symlinks can be created based on udev
1422 * rules.
1423 */
1424 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1425 }
Amit Shah431edb82009-12-21 21:57:40 +05301426 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301427 }
1428}
1429
1430static void control_work_handler(struct work_struct *work)
1431{
1432 struct ports_device *portdev;
1433 struct virtqueue *vq;
1434 struct port_buffer *buf;
1435 unsigned int len;
1436
1437 portdev = container_of(work, struct ports_device, control_work);
1438 vq = portdev->c_ivq;
1439
1440 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001441 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301442 spin_unlock(&portdev->cvq_lock);
1443
1444 buf->len = len;
1445 buf->offset = 0;
1446
1447 handle_control_message(portdev, buf);
1448
1449 spin_lock(&portdev->cvq_lock);
1450 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1451 dev_warn(&portdev->vdev->dev,
1452 "Error adding buffer to queue\n");
1453 free_buf(buf);
1454 }
1455 }
1456 spin_unlock(&portdev->cvq_lock);
1457}
1458
1459static void in_intr(struct virtqueue *vq)
1460{
1461 struct port *port;
1462 unsigned long flags;
1463
1464 port = find_port_by_vq(vq->vdev->priv, vq);
1465 if (!port)
1466 return;
1467
1468 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301469 if (!port->inbuf)
1470 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301471
Amit Shah88f251a2009-12-21 22:15:30 +05301472 /*
1473 * Don't queue up data when port is closed. This condition
1474 * can be reached when a console port is not yet connected (no
1475 * tty is spawned) and the host sends out data to console
1476 * ports. For generic serial ports, the host won't
1477 * (shouldn't) send data till the guest is connected.
1478 */
1479 if (!port->guest_connected)
1480 discard_port_data(port);
1481
Amit Shah17634ba2009-12-21 21:03:25 +05301482 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1483
Amit Shah2030fa42009-12-21 21:49:30 +05301484 wake_up_interruptible(&port->waitqueue);
1485
Amit Shah17634ba2009-12-21 21:03:25 +05301486 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1487 hvc_kick();
1488}
1489
1490static void control_intr(struct virtqueue *vq)
1491{
1492 struct ports_device *portdev;
1493
1494 portdev = vq->vdev->priv;
1495 schedule_work(&portdev->control_work);
1496}
1497
Amit Shah7f5d8102009-12-21 22:22:08 +05301498static void config_intr(struct virtio_device *vdev)
1499{
1500 struct ports_device *portdev;
1501
1502 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001503
Amit Shah4038f5b72010-05-06 02:05:07 +05301504 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301505 struct port *port;
1506 u16 rows, cols;
1507
1508 vdev->config->get(vdev,
1509 offsetof(struct virtio_console_config, cols),
1510 &cols, sizeof(u16));
1511 vdev->config->get(vdev,
1512 offsetof(struct virtio_console_config, rows),
1513 &rows, sizeof(u16));
1514
1515 port = find_port_by_id(portdev, 0);
1516 set_console_size(port, rows, cols);
1517
Amit Shah4038f5b72010-05-06 02:05:07 +05301518 /*
1519 * We'll use this way of resizing only for legacy
1520 * support. For newer userspace
1521 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1522 * to indicate console size changes so that it can be
1523 * done per-port.
1524 */
Amit Shah97788292010-05-06 02:05:08 +05301525 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301526 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301527}
1528
Amit Shah2658a79a2010-01-18 19:15:11 +05301529static int init_vqs(struct ports_device *portdev)
1530{
1531 vq_callback_t **io_callbacks;
1532 char **io_names;
1533 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301534 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a79a2010-01-18 19:15:11 +05301535 int err;
1536
Amit Shah17634ba2009-12-21 21:03:25 +05301537 nr_ports = portdev->config.max_nr_ports;
1538 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301539
1540 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1541 if (!vqs) {
1542 err = -ENOMEM;
1543 goto fail;
1544 }
1545 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1546 if (!io_callbacks) {
1547 err = -ENOMEM;
1548 goto free_vqs;
1549 }
1550 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1551 if (!io_names) {
1552 err = -ENOMEM;
1553 goto free_callbacks;
1554 }
1555 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1556 GFP_KERNEL);
1557 if (!portdev->in_vqs) {
1558 err = -ENOMEM;
1559 goto free_names;
1560 }
1561 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1562 GFP_KERNEL);
1563 if (!portdev->out_vqs) {
1564 err = -ENOMEM;
1565 goto free_invqs;
1566 }
1567
Amit Shah17634ba2009-12-21 21:03:25 +05301568 /*
1569 * For backward compat (newer host but older guest), the host
1570 * spawns a console port first and also inits the vqs for port
1571 * 0 before others.
1572 */
1573 j = 0;
1574 io_callbacks[j] = in_intr;
1575 io_callbacks[j + 1] = NULL;
1576 io_names[j] = "input";
1577 io_names[j + 1] = "output";
1578 j += 2;
Amit Shah2658a79a2010-01-18 19:15:11 +05301579
Amit Shah17634ba2009-12-21 21:03:25 +05301580 if (use_multiport(portdev)) {
1581 io_callbacks[j] = control_intr;
1582 io_callbacks[j + 1] = NULL;
1583 io_names[j] = "control-i";
1584 io_names[j + 1] = "control-o";
1585
1586 for (i = 1; i < nr_ports; i++) {
1587 j += 2;
1588 io_callbacks[j] = in_intr;
1589 io_callbacks[j + 1] = NULL;
1590 io_names[j] = "input";
1591 io_names[j + 1] = "output";
1592 }
1593 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301594 /* Find the queues. */
1595 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1596 io_callbacks,
1597 (const char **)io_names);
1598 if (err)
1599 goto free_outvqs;
1600
Amit Shah17634ba2009-12-21 21:03:25 +05301601 j = 0;
Amit Shah2658a79a2010-01-18 19:15:11 +05301602 portdev->in_vqs[0] = vqs[0];
1603 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301604 j += 2;
1605 if (use_multiport(portdev)) {
1606 portdev->c_ivq = vqs[j];
1607 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a79a2010-01-18 19:15:11 +05301608
Amit Shah17634ba2009-12-21 21:03:25 +05301609 for (i = 1; i < nr_ports; i++) {
1610 j += 2;
1611 portdev->in_vqs[i] = vqs[j];
1612 portdev->out_vqs[i] = vqs[j + 1];
1613 }
1614 }
Amit Shah2658a79a2010-01-18 19:15:11 +05301615 kfree(io_callbacks);
1616 kfree(io_names);
1617 kfree(vqs);
1618
1619 return 0;
1620
1621free_names:
1622 kfree(io_names);
1623free_callbacks:
1624 kfree(io_callbacks);
1625free_outvqs:
1626 kfree(portdev->out_vqs);
1627free_invqs:
1628 kfree(portdev->in_vqs);
1629free_vqs:
1630 kfree(vqs);
1631fail:
1632 return err;
1633}
1634
Amit Shahfb08bd22009-12-21 21:36:04 +05301635static const struct file_operations portdev_fops = {
1636 .owner = THIS_MODULE,
1637};
1638
Amit Shah1c85bf32010-01-18 19:15:07 +05301639/*
1640 * Once we're further in boot, we get probed like any other virtio
1641 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301642 *
1643 * If the host also supports multiple console ports, we check the
1644 * config space to see how many ports the host has spawned. We
1645 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301646 */
1647static int __devinit virtcons_probe(struct virtio_device *vdev)
1648{
Amit Shah1c85bf32010-01-18 19:15:07 +05301649 struct ports_device *portdev;
1650 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301651 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301652
1653 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1654 if (!portdev) {
1655 err = -ENOMEM;
1656 goto fail;
1657 }
1658
1659 /* Attach this portdev to this virtio_device, and vice-versa. */
1660 portdev->vdev = vdev;
1661 vdev->priv = portdev;
1662
Amit Shahfb08bd22009-12-21 21:36:04 +05301663 spin_lock_irq(&pdrvdata_lock);
1664 portdev->drv_index = pdrvdata.index++;
1665 spin_unlock_irq(&pdrvdata_lock);
1666
1667 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1668 &portdev_fops);
1669 if (portdev->chr_major < 0) {
1670 dev_err(&vdev->dev,
1671 "Error %d registering chrdev for device %u\n",
1672 portdev->chr_major, portdev->drv_index);
1673 err = portdev->chr_major;
1674 goto free;
1675 }
1676
Amit Shah17634ba2009-12-21 21:03:25 +05301677 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301678 portdev->config.max_nr_ports = 1;
1679 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1680 multiport = true;
1681 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1682
Amit Shahb99fa812010-05-19 22:15:46 -06001683 vdev->config->get(vdev, offsetof(struct virtio_console_config,
Amit Shahb99fa812010-05-19 22:15:46 -06001684 max_nr_ports),
Amit Shah17634ba2009-12-21 21:03:25 +05301685 &portdev->config.max_nr_ports,
1686 sizeof(portdev->config.max_nr_ports));
Amit Shah17634ba2009-12-21 21:03:25 +05301687 }
1688
1689 /* Let the Host know we support multiple ports.*/
1690 vdev->config->finalize_features(vdev);
1691
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");