blob: 1a02ad049e0b2ef402e159f6d839e285737ead97 [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>
Christian Borntraeger5e384832011-09-22 23:44:23 +053022#include <linux/completion.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053023#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100024#include <linux/err.h>
Amit Shaha08fa922011-09-14 13:06:41 +053025#include <linux/freezer.h>
Amit Shah2030fa42009-12-21 21:49:30 +053026#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100027#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053028#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053029#include <linux/poll.h>
30#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053032#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100033#include <linux/virtio.h>
34#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053035#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053036#include <linux/workqueue.h>
Paul Gortmakerc22405c2011-07-03 13:35:48 -040037#include <linux/module.h>
Amit Shah51df0ac2011-02-01 09:31:25 +053038#include "../tty/hvc/hvc_console.h"
Rusty Russell31610432007-10-22 11:03:39 +100039
Amit Shah38edf582010-01-18 19:15:05 +053040/*
41 * This is a global struct for storing common data for all the devices
42 * this driver handles.
43 *
44 * Mainly, it has a linked list for all the consoles in one place so
45 * that callbacks from hvc for get_chars(), put_chars() work properly
46 * across multiple devices and multiple ports per device.
47 */
48struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053049 /* Used for registering chardevs */
50 struct class *class;
51
Amit Shahd99393e2009-12-21 22:36:21 +053052 /* Used for exporting per-port information to debugfs */
53 struct dentry *debugfs_dir;
54
Amit Shah6bdf2af2010-09-02 18:11:49 +053055 /* List of all the devices we're handling */
56 struct list_head portdevs;
57
Amit Shahfb08bd22009-12-21 21:36:04 +053058 /* Number of devices this driver is handling */
59 unsigned int index;
60
Rusty Russelld8a02bd2010-01-18 19:15:06 +053061 /*
62 * This is used to keep track of the number of hvc consoles
63 * spawned by this driver. This number is given as the first
64 * argument to hvc_alloc(). To correctly map an initial
65 * console spawned via hvc_instantiate to the console being
66 * hooked up via hvc_alloc, we need to pass the same vtermno.
67 *
68 * We also just assume the first console being initialised was
69 * the first one that got used as the initial console.
70 */
71 unsigned int next_vtermno;
72
Amit Shah38edf582010-01-18 19:15:05 +053073 /* All the console devices handled by this driver */
74 struct list_head consoles;
75};
76static struct ports_driver_data pdrvdata;
77
78DEFINE_SPINLOCK(pdrvdata_lock);
Christian Borntraeger5e384832011-09-22 23:44:23 +053079DECLARE_COMPLETION(early_console_added);
Amit Shah38edf582010-01-18 19:15:05 +053080
Amit Shah4f23c572010-01-18 19:15:09 +053081/* This struct holds information that's relevant only for console ports */
82struct console {
83 /* We'll place all consoles in a list in the pdrvdata struct */
84 struct list_head list;
85
86 /* The hvc device associated with this console port */
87 struct hvc_struct *hvc;
88
Amit Shah97788292010-05-06 02:05:08 +053089 /* The size of the console */
90 struct winsize ws;
91
Amit Shah4f23c572010-01-18 19:15:09 +053092 /*
93 * This number identifies the number that we used to register
94 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
95 * number passed on by the hvc callbacks to us to
96 * differentiate between the other console ports handled by
97 * this driver
98 */
99 u32 vtermno;
100};
101
Amit Shahfdb9a052010-01-18 19:15:01 +0530102struct port_buffer {
103 char *buf;
104
105 /* size of the buffer in *buf above */
106 size_t size;
107
108 /* used length of the buffer */
109 size_t len;
110 /* offset in the buf from which to consume data */
111 size_t offset;
112};
113
Amit Shah17634ba2009-12-21 21:03:25 +0530114/*
115 * This is a per-device struct that stores data common to all the
116 * ports for that device (vdev->priv).
117 */
118struct ports_device {
Amit Shah6bdf2af2010-09-02 18:11:49 +0530119 /* Next portdev in the list, head is in the pdrvdata struct */
120 struct list_head list;
121
Amit Shah17634ba2009-12-21 21:03:25 +0530122 /*
123 * Workqueue handlers where we process deferred work after
124 * notification
125 */
126 struct work_struct control_work;
127
128 struct list_head ports;
129
130 /* To protect the list of ports */
131 spinlock_t ports_lock;
132
133 /* To protect the vq operations for the control channel */
134 spinlock_t cvq_lock;
135
136 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600137 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530138
139 /* The virtio device we're associated with */
140 struct virtio_device *vdev;
141
142 /*
143 * A couple of virtqueues for the control channel: one for
144 * guest->host transfers, one for host->guest transfers
145 */
146 struct virtqueue *c_ivq, *c_ovq;
147
148 /* Array of per-port IO virtqueues */
149 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530150
151 /* Used for numbering devices for sysfs and debugfs */
152 unsigned int drv_index;
153
154 /* Major number for this device. Ports will be created as minors. */
155 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530156};
157
Amit Shah17e5b4f2011-09-14 13:06:46 +0530158struct port_stats {
159 unsigned long bytes_sent, bytes_received, bytes_discarded;
160};
161
Amit Shah1c85bf32010-01-18 19:15:07 +0530162/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530163struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530164 /* Next port in the list, head is in the ports_device */
165 struct list_head list;
166
Amit Shah1c85bf32010-01-18 19:15:07 +0530167 /* Pointer to the parent virtio_console device */
168 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530169
170 /* The current buffer from which data has to be fed to readers */
171 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000172
Amit Shah203baab2010-01-18 19:15:12 +0530173 /*
174 * To protect the operations on the in_vq associated with this
175 * port. Has to be a spinlock because it can be called from
176 * interrupt context (get_char()).
177 */
178 spinlock_t inbuf_lock;
179
Amit Shahcdfadfc2010-05-19 22:15:50 -0600180 /* Protect the operations on the out_vq. */
181 spinlock_t outvq_lock;
182
Amit Shah1c85bf32010-01-18 19:15:07 +0530183 /* The IO vqs for this port */
184 struct virtqueue *in_vq, *out_vq;
185
Amit Shahd99393e2009-12-21 22:36:21 +0530186 /* File in the debugfs directory that exposes this port's information */
187 struct dentry *debugfs_file;
188
Amit Shah4f23c572010-01-18 19:15:09 +0530189 /*
Amit Shah17e5b4f2011-09-14 13:06:46 +0530190 * Keep count of the bytes sent, received and discarded for
191 * this port for accounting and debugging purposes. These
192 * counts are not reset across port open / close events.
193 */
194 struct port_stats stats;
195
196 /*
Amit Shah4f23c572010-01-18 19:15:09 +0530197 * The entries in this struct will be valid if this port is
198 * hooked up to an hvc console
199 */
200 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530201
Amit Shahfb08bd22009-12-21 21:36:04 +0530202 /* Each port associates with a separate char device */
Amit Shahd22a6982010-09-02 18:20:59 +0530203 struct cdev *cdev;
Amit Shahfb08bd22009-12-21 21:36:04 +0530204 struct device *dev;
205
Amit Shahb353a6b2010-09-02 18:38:29 +0530206 /* Reference-counting to handle port hot-unplugs and file operations */
207 struct kref kref;
208
Amit Shah2030fa42009-12-21 21:49:30 +0530209 /* A waitqueue for poll() or blocking read operations */
210 wait_queue_head_t waitqueue;
211
Amit Shah431edb82009-12-21 21:57:40 +0530212 /* The 'name' of the port that we expose via sysfs properties */
213 char *name;
214
Amit Shah3eae0ad2010-09-02 18:47:52 +0530215 /* We can notify apps of host connect / disconnect events via SIGIO */
216 struct fasync_struct *async_queue;
217
Amit Shah17634ba2009-12-21 21:03:25 +0530218 /* The 'id' to identify the port with the Host */
219 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530220
Amit Shahcdfadfc2010-05-19 22:15:50 -0600221 bool outvq_full;
222
Amit Shah2030fa42009-12-21 21:49:30 +0530223 /* Is the host device open */
224 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530225
226 /* We should allow only one process to open a port */
227 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530228};
Rusty Russell31610432007-10-22 11:03:39 +1000229
Rusty Russell971f3392010-01-18 19:14:56 +0530230/* This is the very early arch-specified put chars function. */
231static int (*early_put_chars)(u32, const char *, int);
232
Amit Shah38edf582010-01-18 19:15:05 +0530233static struct port *find_port_by_vtermno(u32 vtermno)
234{
235 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530236 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530237 unsigned long flags;
238
239 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530240 list_for_each_entry(cons, &pdrvdata.consoles, list) {
241 if (cons->vtermno == vtermno) {
242 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530243 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530244 }
Amit Shah38edf582010-01-18 19:15:05 +0530245 }
246 port = NULL;
247out:
248 spin_unlock_irqrestore(&pdrvdata_lock, flags);
249 return port;
250}
251
Amit Shah04950cd2010-09-02 18:20:58 +0530252static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev,
253 dev_t dev)
254{
255 struct port *port;
256 unsigned long flags;
257
258 spin_lock_irqsave(&portdev->ports_lock, flags);
Amit Shahd0bfaac2013-07-29 14:16:13 +0930259 list_for_each_entry(port, &portdev->ports, list) {
260 if (port->cdev->dev == dev) {
261 kref_get(&port->kref);
Amit Shah04950cd2010-09-02 18:20:58 +0530262 goto out;
Amit Shahd0bfaac2013-07-29 14:16:13 +0930263 }
264 }
Amit Shah04950cd2010-09-02 18:20:58 +0530265 port = NULL;
266out:
267 spin_unlock_irqrestore(&portdev->ports_lock, flags);
268
269 return port;
270}
271
272static struct port *find_port_by_devt(dev_t dev)
273{
274 struct ports_device *portdev;
275 struct port *port;
276 unsigned long flags;
277
278 spin_lock_irqsave(&pdrvdata_lock, flags);
279 list_for_each_entry(portdev, &pdrvdata.portdevs, list) {
280 port = find_port_by_devt_in_portdev(portdev, dev);
281 if (port)
282 goto out;
283 }
284 port = NULL;
285out:
286 spin_unlock_irqrestore(&pdrvdata_lock, flags);
287 return port;
288}
289
Amit Shah17634ba2009-12-21 21:03:25 +0530290static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
291{
292 struct port *port;
293 unsigned long flags;
294
295 spin_lock_irqsave(&portdev->ports_lock, flags);
296 list_for_each_entry(port, &portdev->ports, list)
297 if (port->id == id)
298 goto out;
299 port = NULL;
300out:
301 spin_unlock_irqrestore(&portdev->ports_lock, flags);
302
303 return port;
304}
305
Amit Shah203baab2010-01-18 19:15:12 +0530306static struct port *find_port_by_vq(struct ports_device *portdev,
307 struct virtqueue *vq)
308{
309 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530310 unsigned long flags;
311
Amit Shah17634ba2009-12-21 21:03:25 +0530312 spin_lock_irqsave(&portdev->ports_lock, flags);
313 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530314 if (port->in_vq == vq || port->out_vq == vq)
315 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530316 port = NULL;
317out:
Amit Shah17634ba2009-12-21 21:03:25 +0530318 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530319 return port;
320}
321
Amit Shah17634ba2009-12-21 21:03:25 +0530322static bool is_console_port(struct port *port)
323{
324 if (port->cons.hvc)
325 return true;
326 return false;
327}
328
329static inline bool use_multiport(struct ports_device *portdev)
330{
331 /*
332 * This condition can be true when put_chars is called from
333 * early_init
334 */
335 if (!portdev->vdev)
336 return 0;
337 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
338}
339
Amit Shahfdb9a052010-01-18 19:15:01 +0530340static void free_buf(struct port_buffer *buf)
341{
342 kfree(buf->buf);
343 kfree(buf);
344}
345
346static struct port_buffer *alloc_buf(size_t buf_size)
347{
348 struct port_buffer *buf;
349
350 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
351 if (!buf)
352 goto fail;
353 buf->buf = kzalloc(buf_size, GFP_KERNEL);
354 if (!buf->buf)
355 goto free_buf;
356 buf->len = 0;
357 buf->offset = 0;
358 buf->size = buf_size;
359 return buf;
360
361free_buf:
362 kfree(buf);
363fail:
364 return NULL;
365}
366
Amit Shaha3cde442010-01-18 19:15:03 +0530367/* Callers should take appropriate locks */
Amit Shahdefde662011-09-14 13:06:42 +0530368static struct port_buffer *get_inbuf(struct port *port)
Amit Shaha3cde442010-01-18 19:15:03 +0530369{
370 struct port_buffer *buf;
Amit Shaha3cde442010-01-18 19:15:03 +0530371 unsigned int len;
372
Amit Shahd25a9dd2011-09-14 13:06:43 +0530373 if (port->inbuf)
374 return port->inbuf;
375
376 buf = virtqueue_get_buf(port->in_vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530377 if (buf) {
378 buf->len = len;
379 buf->offset = 0;
Amit Shah17e5b4f2011-09-14 13:06:46 +0530380 port->stats.bytes_received += len;
Amit Shaha3cde442010-01-18 19:15:03 +0530381 }
382 return buf;
383}
384
Rusty Russella23ea922010-01-18 19:14:55 +0530385/*
Amit Shahe27b5192010-01-18 19:15:02 +0530386 * Create a scatter-gather list representing our input buffer and put
387 * it in the queue.
388 *
389 * Callers should take appropriate locks.
390 */
Amit Shah203baab2010-01-18 19:15:12 +0530391static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530392{
393 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530394 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530395
Amit Shahe27b5192010-01-18 19:15:02 +0530396 sg_init_one(sg, buf->buf, buf->size);
397
Rusty Russellf96fde42012-01-12 15:44:42 +1030398 ret = virtqueue_add_buf(vq, sg, 0, 1, buf, GFP_ATOMIC);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300399 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530400 return ret;
401}
402
Amit Shah88f251a2009-12-21 22:15:30 +0530403/* Discard any unread data this port has. Callers lockers. */
404static void discard_port_data(struct port *port)
405{
406 struct port_buffer *buf;
Amit Shah2d24cda2011-09-14 13:06:45 +0530407 unsigned int err;
Amit Shah88f251a2009-12-21 22:15:30 +0530408
Amit Shahd7a62cd2011-03-04 14:04:33 +1030409 if (!port->portdev) {
410 /* Device has been unplugged. vqs are already gone. */
411 return;
412 }
Amit Shah2d24cda2011-09-14 13:06:45 +0530413 buf = get_inbuf(port);
Amit Shah88f251a2009-12-21 22:15:30 +0530414
Amit Shahce072a02011-09-14 13:06:44 +0530415 err = 0;
Amit Shahd6933562010-02-12 10:32:18 +0530416 while (buf) {
Amit Shah17e5b4f2011-09-14 13:06:46 +0530417 port->stats.bytes_discarded += buf->len - buf->offset;
Amit Shah2d24cda2011-09-14 13:06:45 +0530418 if (add_inbuf(port->in_vq, buf) < 0) {
Amit Shahce072a02011-09-14 13:06:44 +0530419 err++;
Amit Shahd6933562010-02-12 10:32:18 +0530420 free_buf(buf);
421 }
Amit Shah2d24cda2011-09-14 13:06:45 +0530422 port->inbuf = NULL;
423 buf = get_inbuf(port);
Amit Shah88f251a2009-12-21 22:15:30 +0530424 }
Amit Shahce072a02011-09-14 13:06:44 +0530425 if (err)
Amit Shahd6933562010-02-12 10:32:18 +0530426 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
Amit Shahce072a02011-09-14 13:06:44 +0530427 err);
Amit Shah88f251a2009-12-21 22:15:30 +0530428}
429
Amit Shah203baab2010-01-18 19:15:12 +0530430static bool port_has_data(struct port *port)
431{
432 unsigned long flags;
433 bool ret;
434
Amit Shahd6933562010-02-12 10:32:18 +0530435 ret = false;
Amit Shahd25a9dd2011-09-14 13:06:43 +0530436 spin_lock_irqsave(&port->inbuf_lock, flags);
437 port->inbuf = get_inbuf(port);
438 if (port->inbuf)
439 ret = true;
440
Amit Shah203baab2010-01-18 19:15:12 +0530441 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530442 return ret;
443}
444
Amit Shah3425e702010-05-19 22:15:46 -0600445static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
446 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530447{
448 struct scatterlist sg[1];
449 struct virtio_console_control cpkt;
450 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530451 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530452
Amit Shah3425e702010-05-19 22:15:46 -0600453 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530454 return 0;
455
Amit Shah3425e702010-05-19 22:15:46 -0600456 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530457 cpkt.event = event;
458 cpkt.value = value;
459
Amit Shah3425e702010-05-19 22:15:46 -0600460 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530461
462 sg_init_one(sg, &cpkt, sizeof(cpkt));
Rusty Russellf96fde42012-01-12 15:44:42 +1030463 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt, GFP_ATOMIC) >= 0) {
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300464 virtqueue_kick(vq);
465 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530466 cpu_relax();
467 }
468 return 0;
469}
470
Amit Shah3425e702010-05-19 22:15:46 -0600471static ssize_t send_control_msg(struct port *port, unsigned int event,
472 unsigned int value)
473{
Amit Shah84ec06c2010-09-02 18:11:42 +0530474 /* Did the port get unplugged before userspace closed it? */
475 if (port->portdev)
476 return __send_control_msg(port->portdev, port->id, event, value);
477 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600478}
479
Amit Shahcdfadfc2010-05-19 22:15:50 -0600480/* Callers must take the port->outvq_lock */
481static void reclaim_consumed_buffers(struct port *port)
482{
483 void *buf;
484 unsigned int len;
485
Amit Shahd7a62cd2011-03-04 14:04:33 +1030486 if (!port->portdev) {
487 /* Device has been unplugged. vqs are already gone. */
488 return;
489 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600490 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
491 kfree(buf);
492 port->outvq_full = false;
493 }
494}
495
496static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
497 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530498{
499 struct scatterlist sg[1];
500 struct virtqueue *out_vq;
501 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600502 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530503 unsigned int len;
504
505 out_vq = port->out_vq;
506
Amit Shahcdfadfc2010-05-19 22:15:50 -0600507 spin_lock_irqsave(&port->outvq_lock, flags);
508
509 reclaim_consumed_buffers(port);
510
Amit Shahf997f00b2009-12-21 17:28:51 +0530511 sg_init_one(sg, in_buf, in_count);
Rusty Russellf96fde42012-01-12 15:44:42 +1030512 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf, GFP_ATOMIC);
Amit Shahf997f00b2009-12-21 17:28:51 +0530513
514 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300515 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530516
517 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600518 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600519 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530520 }
521
Amit Shahcdfadfc2010-05-19 22:15:50 -0600522 if (ret == 0)
523 port->outvq_full = true;
524
525 if (nonblock)
526 goto done;
527
528 /*
529 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e2010-10-20 13:45:43 +1030530 * sent. This is done for data from the hvc_console; the tty
531 * operations are performed with spinlocks held so we can't
532 * sleep here. An alternative would be to copy the data to a
533 * buffer and relax the spinning requirement. The downside is
534 * we need to kmalloc a GFP_ATOMIC buffer each time the
535 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600536 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300537 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530538 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600539done:
540 spin_unlock_irqrestore(&port->outvq_lock, flags);
Amit Shah17e5b4f2011-09-14 13:06:46 +0530541
542 port->stats.bytes_sent += in_count;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600543 /*
544 * We're expected to return the amount of data we wrote -- all
545 * of it
546 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600547 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530548}
549
Amit Shah203baab2010-01-18 19:15:12 +0530550/*
551 * Give out the data that's requested from the buffer that we have
552 * queued up.
553 */
Amit Shahb766cee2009-12-21 21:26:45 +0530554static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
555 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530556{
557 struct port_buffer *buf;
558 unsigned long flags;
559
560 if (!out_count || !port_has_data(port))
561 return 0;
562
563 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530564 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530565
Amit Shahb766cee2009-12-21 21:26:45 +0530566 if (to_user) {
567 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530568
Amit Shahb766cee2009-12-21 21:26:45 +0530569 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
570 if (ret)
571 return -EFAULT;
572 } else {
573 memcpy(out_buf, buf->buf + buf->offset, out_count);
574 }
575
Amit Shah203baab2010-01-18 19:15:12 +0530576 buf->offset += out_count;
577
578 if (buf->offset == buf->len) {
579 /*
580 * We're done using all the data in this buffer.
581 * Re-queue so that the Host can send us more data.
582 */
583 spin_lock_irqsave(&port->inbuf_lock, flags);
584 port->inbuf = NULL;
585
586 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530587 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530588
589 spin_unlock_irqrestore(&port->inbuf_lock, flags);
590 }
Amit Shahb766cee2009-12-21 21:26:45 +0530591 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530592 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530593}
594
Amit Shah2030fa42009-12-21 21:49:30 +0530595/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600596static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530597{
Amit Shah3709ea72010-09-02 18:11:43 +0530598 if (!port->guest_connected) {
599 /* Port got hot-unplugged. Let's exit. */
600 return false;
601 }
Amit Shah60caacd2010-05-19 22:15:49 -0600602 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530603}
604
Amit Shahcdfadfc2010-05-19 22:15:50 -0600605static bool will_write_block(struct port *port)
606{
607 bool ret;
608
Amit Shah60e5e0b2010-05-27 13:24:40 +0530609 if (!port->guest_connected) {
610 /* Port got hot-unplugged. Let's exit. */
611 return false;
612 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600613 if (!port->host_connected)
614 return true;
615
616 spin_lock_irq(&port->outvq_lock);
617 /*
618 * Check if the Host has consumed any buffers since we last
619 * sent data (this is only applicable for nonblocking ports).
620 */
621 reclaim_consumed_buffers(port);
622 ret = port->outvq_full;
623 spin_unlock_irq(&port->outvq_lock);
624
625 return ret;
626}
627
Amit Shah2030fa42009-12-21 21:49:30 +0530628static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
629 size_t count, loff_t *offp)
630{
631 struct port *port;
632 ssize_t ret;
633
634 port = filp->private_data;
635
636 if (!port_has_data(port)) {
637 /*
638 * If nothing's connected on the host just return 0 in
639 * case of list_empty; this tells the userspace app
640 * that there's no connection
641 */
642 if (!port->host_connected)
643 return 0;
644 if (filp->f_flags & O_NONBLOCK)
645 return -EAGAIN;
646
Amit Shaha08fa922011-09-14 13:06:41 +0530647 ret = wait_event_freezable(port->waitqueue,
648 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530649 if (ret < 0)
650 return ret;
651 }
Amit Shahb3dddb92010-09-02 18:11:45 +0530652 /* Port got hot-unplugged. */
653 if (!port->guest_connected)
654 return -ENODEV;
Amit Shah2030fa42009-12-21 21:49:30 +0530655 /*
656 * We could've received a disconnection message while we were
657 * waiting for more data.
658 *
659 * This check is not clubbed in the if() statement above as we
660 * might receive some data as well as the host could get
661 * disconnected after we got woken up from our wait. So we
662 * really want to give off whatever data we have and only then
663 * check for host_connected.
664 */
665 if (!port_has_data(port) && !port->host_connected)
666 return 0;
667
668 return fill_readbuf(port, ubuf, count, true);
669}
670
671static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
672 size_t count, loff_t *offp)
673{
674 struct port *port;
675 char *buf;
676 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600677 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530678
Amit Shah65745422010-09-14 13:26:16 +0530679 /* Userspace could be out to fool us */
680 if (!count)
681 return 0;
682
Amit Shah2030fa42009-12-21 21:49:30 +0530683 port = filp->private_data;
684
Amit Shahcdfadfc2010-05-19 22:15:50 -0600685 nonblock = filp->f_flags & O_NONBLOCK;
686
687 if (will_write_block(port)) {
688 if (nonblock)
689 return -EAGAIN;
690
Amit Shaha08fa922011-09-14 13:06:41 +0530691 ret = wait_event_freezable(port->waitqueue,
692 !will_write_block(port));
Amit Shahcdfadfc2010-05-19 22:15:50 -0600693 if (ret < 0)
694 return ret;
695 }
Amit Shahf4028112010-09-02 18:11:46 +0530696 /* Port got hot-unplugged. */
697 if (!port->guest_connected)
698 return -ENODEV;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600699
Amit Shah2030fa42009-12-21 21:49:30 +0530700 count = min((size_t)(32 * 1024), count);
701
702 buf = kmalloc(count, GFP_KERNEL);
703 if (!buf)
704 return -ENOMEM;
705
706 ret = copy_from_user(buf, ubuf, count);
707 if (ret) {
708 ret = -EFAULT;
709 goto free_buf;
710 }
711
Amit Shah531295e2010-10-20 13:45:43 +1030712 /*
713 * We now ask send_buf() to not spin for generic ports -- we
714 * can re-use the same code path that non-blocking file
715 * descriptors take for blocking file descriptors since the
716 * wait is already done and we're certain the write will go
717 * through to the host.
718 */
719 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600720 ret = send_buf(port, buf, count, nonblock);
721
722 if (nonblock && ret > 0)
723 goto out;
724
Amit Shah2030fa42009-12-21 21:49:30 +0530725free_buf:
726 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600727out:
Amit Shah2030fa42009-12-21 21:49:30 +0530728 return ret;
729}
730
731static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
732{
733 struct port *port;
734 unsigned int ret;
735
736 port = filp->private_data;
737 poll_wait(filp, &port->waitqueue, wait);
738
Amit Shah8529a502010-09-02 18:11:44 +0530739 if (!port->guest_connected) {
740 /* Port got unplugged */
741 return POLLHUP;
742 }
Amit Shah2030fa42009-12-21 21:49:30 +0530743 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530744 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530745 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600746 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530747 ret |= POLLOUT;
748 if (!port->host_connected)
749 ret |= POLLHUP;
750
751 return ret;
752}
753
Amit Shahb353a6b2010-09-02 18:38:29 +0530754static void remove_port(struct kref *kref);
755
Amit Shah2030fa42009-12-21 21:49:30 +0530756static int port_fops_release(struct inode *inode, struct file *filp)
757{
758 struct port *port;
759
760 port = filp->private_data;
761
762 /* Notify host of port being closed */
763 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
764
Amit Shah88f251a2009-12-21 22:15:30 +0530765 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530766 port->guest_connected = false;
767
Amit Shah88f251a2009-12-21 22:15:30 +0530768 discard_port_data(port);
769
770 spin_unlock_irq(&port->inbuf_lock);
771
Amit Shahcdfadfc2010-05-19 22:15:50 -0600772 spin_lock_irq(&port->outvq_lock);
773 reclaim_consumed_buffers(port);
774 spin_unlock_irq(&port->outvq_lock);
775
Amit Shahb353a6b2010-09-02 18:38:29 +0530776 /*
777 * Locks aren't necessary here as a port can't be opened after
778 * unplug, and if a port isn't unplugged, a kref would already
779 * exist for the port. Plus, taking ports_lock here would
780 * create a dependency on other locks taken by functions
781 * inside remove_port if we're the last holder of the port,
782 * creating many problems.
783 */
784 kref_put(&port->kref, remove_port);
785
Amit Shah2030fa42009-12-21 21:49:30 +0530786 return 0;
787}
788
789static int port_fops_open(struct inode *inode, struct file *filp)
790{
791 struct cdev *cdev = inode->i_cdev;
792 struct port *port;
Amit Shah8ad37e82010-09-02 18:11:48 +0530793 int ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530794
Amit Shahd0bfaac2013-07-29 14:16:13 +0930795 /* We get the port with a kref here */
Amit Shah04950cd2010-09-02 18:20:58 +0530796 port = find_port_by_devt(cdev->dev);
Amit Shah9c040cb2013-07-29 14:17:13 +0930797 if (!port) {
798 /* Port was unplugged before we could proceed */
799 return -ENXIO;
800 }
Amit Shah2030fa42009-12-21 21:49:30 +0530801 filp->private_data = port;
802
803 /*
804 * Don't allow opening of console port devices -- that's done
805 * via /dev/hvc
806 */
Amit Shah8ad37e82010-09-02 18:11:48 +0530807 if (is_console_port(port)) {
808 ret = -ENXIO;
809 goto out;
810 }
Amit Shah2030fa42009-12-21 21:49:30 +0530811
Amit Shah3c7969c2009-11-26 11:25:38 +0530812 /* Allow only one process to open a particular port at a time */
813 spin_lock_irq(&port->inbuf_lock);
814 if (port->guest_connected) {
815 spin_unlock_irq(&port->inbuf_lock);
Amit Shah8ad37e82010-09-02 18:11:48 +0530816 ret = -EMFILE;
817 goto out;
Amit Shah3c7969c2009-11-26 11:25:38 +0530818 }
819
820 port->guest_connected = true;
821 spin_unlock_irq(&port->inbuf_lock);
822
Amit Shahcdfadfc2010-05-19 22:15:50 -0600823 spin_lock_irq(&port->outvq_lock);
824 /*
825 * There might be a chance that we missed reclaiming a few
826 * buffers in the window of the port getting previously closed
827 * and opening now.
828 */
829 reclaim_consumed_buffers(port);
830 spin_unlock_irq(&port->outvq_lock);
831
Amit Shah299fb612010-09-16 14:43:09 +0530832 nonseekable_open(inode, filp);
833
Amit Shah2030fa42009-12-21 21:49:30 +0530834 /* Notify host of port being opened */
835 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
836
837 return 0;
Amit Shah8ad37e82010-09-02 18:11:48 +0530838out:
Amit Shahb353a6b2010-09-02 18:38:29 +0530839 kref_put(&port->kref, remove_port);
Amit Shah8ad37e82010-09-02 18:11:48 +0530840 return ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530841}
842
Amit Shah3eae0ad2010-09-02 18:47:52 +0530843static int port_fops_fasync(int fd, struct file *filp, int mode)
844{
845 struct port *port;
846
847 port = filp->private_data;
848 return fasync_helper(fd, filp, mode, &port->async_queue);
849}
850
Amit Shah2030fa42009-12-21 21:49:30 +0530851/*
852 * The file operations that we support: programs in the guest can open
853 * a console device, read from it, write to it, poll for data and
854 * close it. The devices are at
855 * /dev/vport<device number>p<port number>
856 */
857static const struct file_operations port_fops = {
858 .owner = THIS_MODULE,
859 .open = port_fops_open,
860 .read = port_fops_read,
861 .write = port_fops_write,
862 .poll = port_fops_poll,
863 .release = port_fops_release,
Amit Shah3eae0ad2010-09-02 18:47:52 +0530864 .fasync = port_fops_fasync,
Amit Shah299fb612010-09-16 14:43:09 +0530865 .llseek = no_llseek,
Amit Shah2030fa42009-12-21 21:49:30 +0530866};
867
Amit Shahe27b5192010-01-18 19:15:02 +0530868/*
Rusty Russella23ea922010-01-18 19:14:55 +0530869 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000870 *
Rusty Russella23ea922010-01-18 19:14:55 +0530871 * We turn the characters into a scatter-gather list, add it to the
872 * output queue and then kick the Host. Then we sit here waiting for
873 * it to finish: inefficient in theory, but in practice
874 * implementations will do it immediately (lguest's Launcher does).
875 */
Rusty Russell31610432007-10-22 11:03:39 +1000876static int put_chars(u32 vtermno, const char *buf, int count)
877{
Rusty Russell21206ed2010-01-18 19:15:00 +0530878 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530879
François Diakhaté162a6892010-03-23 18:23:15 +0530880 if (unlikely(early_put_chars))
881 return early_put_chars(vtermno, buf, count);
882
Amit Shah38edf582010-01-18 19:15:05 +0530883 port = find_port_by_vtermno(vtermno);
884 if (!port)
Amit Shah6dc69f92010-05-19 22:15:47 -0600885 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000886
Amit Shahcdfadfc2010-05-19 22:15:50 -0600887 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000888}
889
Rusty Russella23ea922010-01-18 19:14:55 +0530890/*
Rusty Russella23ea922010-01-18 19:14:55 +0530891 * get_chars() is the callback from the hvc_console infrastructure
892 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000893 *
Amit Shah203baab2010-01-18 19:15:12 +0530894 * We call out to fill_readbuf that gets us the required data from the
895 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530896 */
Rusty Russell31610432007-10-22 11:03:39 +1000897static int get_chars(u32 vtermno, char *buf, int count)
898{
Rusty Russell21206ed2010-01-18 19:15:00 +0530899 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000900
Amit Shah6dc69f92010-05-19 22:15:47 -0600901 /* If we've not set up the port yet, we have no input to give. */
902 if (unlikely(early_put_chars))
903 return 0;
904
Amit Shah38edf582010-01-18 19:15:05 +0530905 port = find_port_by_vtermno(vtermno);
906 if (!port)
Amit Shah6dc69f92010-05-19 22:15:47 -0600907 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530908
909 /* If we don't have an input queue yet, we can't get input. */
910 BUG_ON(!port->in_vq);
911
Amit Shahb766cee2009-12-21 21:26:45 +0530912 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000913}
Rusty Russell31610432007-10-22 11:03:39 +1000914
Amit Shahcb06e362010-01-18 19:15:08 +0530915static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100916{
Amit Shahcb06e362010-01-18 19:15:08 +0530917 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100918
Amit Shah2de16a42010-03-19 17:36:44 +0530919 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530920 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530921 return;
922
Amit Shahcb06e362010-01-18 19:15:08 +0530923 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530924 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
925 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100926}
927
Amit Shah38edf582010-01-18 19:15:05 +0530928/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200929static int notifier_add_vio(struct hvc_struct *hp, int data)
930{
Amit Shah38edf582010-01-18 19:15:05 +0530931 struct port *port;
932
933 port = find_port_by_vtermno(hp->vtermno);
934 if (!port)
935 return -EINVAL;
936
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200937 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530938 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100939
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200940 return 0;
941}
942
943static void notifier_del_vio(struct hvc_struct *hp, int data)
944{
945 hp->irq_requested = 0;
946}
947
Amit Shah17634ba2009-12-21 21:03:25 +0530948/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530949static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530950 .get_chars = get_chars,
951 .put_chars = put_chars,
952 .notifier_add = notifier_add_vio,
953 .notifier_del = notifier_del_vio,
954 .notifier_hangup = notifier_del_vio,
955};
956
957/*
958 * Console drivers are initialized very early so boot messages can go
959 * out, so we do things slightly differently from the generic virtio
960 * initialization of the net and block drivers.
961 *
962 * At this stage, the console is output-only. It's too early to set
963 * up a virtqueue, so we let the drivers do some boutique early-output
964 * thing.
965 */
966int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
967{
968 early_put_chars = put_chars;
969 return hvc_instantiate(0, 0, &hv_ops);
970}
971
Amit Shah17634ba2009-12-21 21:03:25 +0530972int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530973{
974 int ret;
975
976 /*
977 * The Host's telling us this port is a console port. Hook it
978 * up with an hvc console.
979 *
980 * To set up and manage our virtual console, we call
981 * hvc_alloc().
982 *
983 * The first argument of hvc_alloc() is the virtual console
984 * number. The second argument is the parameter for the
985 * notification mechanism (like irq number). We currently
986 * leave this as zero, virtqueues have implicit notifications.
987 *
988 * The third argument is a "struct hv_ops" containing the
989 * put_chars() get_chars(), notifier_add() and notifier_del()
990 * pointers. The final argument is the output buffer size: we
991 * can do any size, so we put PAGE_SIZE here.
992 */
993 port->cons.vtermno = pdrvdata.next_vtermno;
994
995 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
996 if (IS_ERR(port->cons.hvc)) {
997 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530998 dev_err(port->dev,
999 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +05301000 port->cons.hvc = NULL;
1001 return ret;
1002 }
1003 spin_lock_irq(&pdrvdata_lock);
1004 pdrvdata.next_vtermno++;
1005 list_add_tail(&port->cons.list, &pdrvdata.consoles);
1006 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +05301007 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +05301008
Amit Shah1d051602010-05-19 22:15:49 -06001009 /*
1010 * Start using the new console output if this is the first
1011 * console to come up.
1012 */
1013 if (early_put_chars)
1014 early_put_chars = NULL;
1015
Amit Shah2030fa42009-12-21 21:49:30 +05301016 /* Notify host of port being opened */
1017 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
1018
Amit Shahcfa6d372010-01-18 19:15:10 +05301019 return 0;
1020}
1021
Amit Shah431edb82009-12-21 21:57:40 +05301022static ssize_t show_port_name(struct device *dev,
1023 struct device_attribute *attr, char *buffer)
1024{
1025 struct port *port;
1026
1027 port = dev_get_drvdata(dev);
1028
1029 return sprintf(buffer, "%s\n", port->name);
1030}
1031
1032static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
1033
1034static struct attribute *port_sysfs_entries[] = {
1035 &dev_attr_name.attr,
1036 NULL
1037};
1038
1039static struct attribute_group port_attribute_group = {
1040 .name = NULL, /* put in device directory */
1041 .attrs = port_sysfs_entries,
1042};
1043
Amit Shahd99393e2009-12-21 22:36:21 +05301044static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
1045 size_t count, loff_t *offp)
1046{
1047 struct port *port;
1048 char *buf;
1049 ssize_t ret, out_offset, out_count;
1050
1051 out_count = 1024;
1052 buf = kmalloc(out_count, GFP_KERNEL);
1053 if (!buf)
1054 return -ENOMEM;
1055
1056 port = filp->private_data;
1057 out_offset = 0;
1058 out_offset += snprintf(buf + out_offset, out_count,
1059 "name: %s\n", port->name ? port->name : "");
1060 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1061 "guest_connected: %d\n", port->guest_connected);
1062 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1063 "host_connected: %d\n", port->host_connected);
1064 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahcdfadfc2010-05-19 22:15:50 -06001065 "outvq_full: %d\n", port->outvq_full);
1066 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shah17e5b4f2011-09-14 13:06:46 +05301067 "bytes_sent: %lu\n", port->stats.bytes_sent);
1068 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1069 "bytes_received: %lu\n",
1070 port->stats.bytes_received);
1071 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1072 "bytes_discarded: %lu\n",
1073 port->stats.bytes_discarded);
1074 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahd99393e2009-12-21 22:36:21 +05301075 "is_console: %s\n",
1076 is_console_port(port) ? "yes" : "no");
1077 out_offset += snprintf(buf + out_offset, out_count - out_offset,
1078 "console_vtermno: %u\n", port->cons.vtermno);
1079
1080 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
1081 kfree(buf);
1082 return ret;
1083}
1084
1085static const struct file_operations port_debugfs_ops = {
1086 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001087 .open = simple_open,
Amit Shahd99393e2009-12-21 22:36:21 +05301088 .read = debugfs_read,
1089};
1090
Amit Shah97788292010-05-06 02:05:08 +05301091static void set_console_size(struct port *port, u16 rows, u16 cols)
1092{
1093 if (!port || !is_console_port(port))
1094 return;
1095
1096 port->cons.ws.ws_row = rows;
1097 port->cons.ws.ws_col = cols;
1098}
1099
Amit Shahc446f8f2010-05-19 22:15:48 -06001100static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
1101{
1102 struct port_buffer *buf;
1103 unsigned int nr_added_bufs;
1104 int ret;
1105
1106 nr_added_bufs = 0;
1107 do {
1108 buf = alloc_buf(PAGE_SIZE);
1109 if (!buf)
1110 break;
1111
1112 spin_lock_irq(lock);
1113 ret = add_inbuf(vq, buf);
1114 if (ret < 0) {
1115 spin_unlock_irq(lock);
1116 free_buf(buf);
1117 break;
1118 }
1119 nr_added_bufs++;
1120 spin_unlock_irq(lock);
1121 } while (ret > 0);
1122
1123 return nr_added_bufs;
1124}
1125
Amit Shah3eae0ad2010-09-02 18:47:52 +05301126static void send_sigio_to_port(struct port *port)
1127{
1128 if (port->async_queue && port->guest_connected)
1129 kill_fasync(&port->async_queue, SIGIO, POLL_OUT);
1130}
1131
Amit Shahc446f8f2010-05-19 22:15:48 -06001132static int add_port(struct ports_device *portdev, u32 id)
1133{
1134 char debugfs_name[16];
1135 struct port *port;
1136 struct port_buffer *buf;
1137 dev_t devt;
1138 unsigned int nr_added_bufs;
1139 int err;
1140
1141 port = kmalloc(sizeof(*port), GFP_KERNEL);
1142 if (!port) {
1143 err = -ENOMEM;
1144 goto fail;
1145 }
Amit Shahb353a6b2010-09-02 18:38:29 +05301146 kref_init(&port->kref);
Amit Shahc446f8f2010-05-19 22:15:48 -06001147
1148 port->portdev = portdev;
1149 port->id = id;
1150
1151 port->name = NULL;
1152 port->inbuf = NULL;
1153 port->cons.hvc = NULL;
Amit Shah3eae0ad2010-09-02 18:47:52 +05301154 port->async_queue = NULL;
Amit Shahc446f8f2010-05-19 22:15:48 -06001155
Amit Shah97788292010-05-06 02:05:08 +05301156 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
1157
Amit Shahc446f8f2010-05-19 22:15:48 -06001158 port->host_connected = port->guest_connected = false;
Amit Shah17e5b4f2011-09-14 13:06:46 +05301159 port->stats = (struct port_stats) { 0 };
Amit Shahc446f8f2010-05-19 22:15:48 -06001160
Amit Shahcdfadfc2010-05-19 22:15:50 -06001161 port->outvq_full = false;
1162
Amit Shahc446f8f2010-05-19 22:15:48 -06001163 port->in_vq = portdev->in_vqs[port->id];
1164 port->out_vq = portdev->out_vqs[port->id];
1165
Amit Shahd22a6982010-09-02 18:20:59 +05301166 port->cdev = cdev_alloc();
1167 if (!port->cdev) {
1168 dev_err(&port->portdev->vdev->dev, "Error allocating cdev\n");
1169 err = -ENOMEM;
1170 goto free_port;
1171 }
1172 port->cdev->ops = &port_fops;
Amit Shahc446f8f2010-05-19 22:15:48 -06001173
1174 devt = MKDEV(portdev->chr_major, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301175 err = cdev_add(port->cdev, devt, 1);
Amit Shahc446f8f2010-05-19 22:15:48 -06001176 if (err < 0) {
1177 dev_err(&port->portdev->vdev->dev,
1178 "Error %d adding cdev for port %u\n", err, id);
Amit Shahd22a6982010-09-02 18:20:59 +05301179 goto free_cdev;
Amit Shahc446f8f2010-05-19 22:15:48 -06001180 }
1181 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1182 devt, port, "vport%up%u",
1183 port->portdev->drv_index, id);
1184 if (IS_ERR(port->dev)) {
1185 err = PTR_ERR(port->dev);
1186 dev_err(&port->portdev->vdev->dev,
1187 "Error %d creating device for port %u\n",
1188 err, id);
1189 goto free_cdev;
1190 }
1191
1192 spin_lock_init(&port->inbuf_lock);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001193 spin_lock_init(&port->outvq_lock);
Amit Shahc446f8f2010-05-19 22:15:48 -06001194 init_waitqueue_head(&port->waitqueue);
1195
1196 /* Fill the in_vq with buffers so the host can send us data. */
1197 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1198 if (!nr_added_bufs) {
1199 dev_err(port->dev, "Error allocating inbufs\n");
1200 err = -ENOMEM;
1201 goto free_device;
1202 }
1203
1204 /*
1205 * If we're not using multiport support, this has to be a console port
1206 */
1207 if (!use_multiport(port->portdev)) {
1208 err = init_port_console(port);
1209 if (err)
1210 goto free_inbufs;
1211 }
1212
1213 spin_lock_irq(&portdev->ports_lock);
1214 list_add_tail(&port->list, &port->portdev->ports);
1215 spin_unlock_irq(&portdev->ports_lock);
1216
1217 /*
1218 * Tell the Host we're set so that it can send us various
1219 * configuration parameters for this port (eg, port name,
1220 * caching, whether this is a console port, etc.)
1221 */
1222 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1223
1224 if (pdrvdata.debugfs_dir) {
1225 /*
1226 * Finally, create the debugfs file that we can use to
1227 * inspect a port's state at any time
1228 */
1229 sprintf(debugfs_name, "vport%up%u",
1230 port->portdev->drv_index, id);
1231 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1232 pdrvdata.debugfs_dir,
1233 port,
1234 &port_debugfs_ops);
1235 }
1236 return 0;
1237
1238free_inbufs:
1239 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1240 free_buf(buf);
1241free_device:
1242 device_destroy(pdrvdata.class, port->dev->devt);
1243free_cdev:
Amit Shahd22a6982010-09-02 18:20:59 +05301244 cdev_del(port->cdev);
Amit Shahc446f8f2010-05-19 22:15:48 -06001245free_port:
1246 kfree(port);
1247fail:
1248 /* The host might want to notify management sw about port add failure */
Julia Lawall0643e4c2010-05-15 11:45:53 +02001249 __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shahc446f8f2010-05-19 22:15:48 -06001250 return err;
1251}
1252
Amit Shahb353a6b2010-09-02 18:38:29 +05301253/* No users remain, remove all port-specific data. */
1254static void remove_port(struct kref *kref)
1255{
1256 struct port *port;
1257
1258 port = container_of(kref, struct port, kref);
1259
Amit Shahb353a6b2010-09-02 18:38:29 +05301260 kfree(port);
1261}
1262
Amit Shaha0e2dbf2011-12-22 16:58:27 +05301263static void remove_port_data(struct port *port)
1264{
1265 struct port_buffer *buf;
1266
1267 /* Remove unused data this port might have received. */
1268 discard_port_data(port);
1269
1270 reclaim_consumed_buffers(port);
1271
1272 /* Remove buffers we queued up for the Host to send us data in. */
1273 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1274 free_buf(buf);
1275}
1276
Amit Shahb353a6b2010-09-02 18:38:29 +05301277/*
1278 * Port got unplugged. Remove port from portdev's list and drop the
1279 * kref reference. If no userspace has this port opened, it will
1280 * result in immediate removal the port.
1281 */
1282static void unplug_port(struct port *port)
Amit Shah1f7aa422009-12-21 22:27:31 +05301283{
Amit Shahb353a6b2010-09-02 18:38:29 +05301284 spin_lock_irq(&port->portdev->ports_lock);
1285 list_del(&port->list);
1286 spin_unlock_irq(&port->portdev->ports_lock);
1287
Amit Shah00476342010-05-27 13:24:39 +05301288 if (port->guest_connected) {
1289 port->guest_connected = false;
1290 port->host_connected = false;
1291 wake_up_interruptible(&port->waitqueue);
Amit Shaha461e112010-09-02 18:47:54 +05301292
1293 /* Let the app know the port is going down. */
1294 send_sigio_to_port(port);
Amit Shah00476342010-05-27 13:24:39 +05301295 }
1296
Amit Shah1f7aa422009-12-21 22:27:31 +05301297 if (is_console_port(port)) {
1298 spin_lock_irq(&pdrvdata_lock);
1299 list_del(&port->cons.list);
1300 spin_unlock_irq(&pdrvdata_lock);
1301 hvc_remove(port->cons.hvc);
1302 }
Amit Shah1f7aa422009-12-21 22:27:31 +05301303
Amit Shaha0e2dbf2011-12-22 16:58:27 +05301304 remove_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301305
Amit Shahb353a6b2010-09-02 18:38:29 +05301306 /*
1307 * We should just assume the device itself has gone off --
1308 * else a close on an open port later will try to send out a
1309 * control message.
1310 */
1311 port->portdev = NULL;
Amit Shah1f7aa422009-12-21 22:27:31 +05301312
Amit Shah9f92fafc2013-07-29 14:20:29 +09301313 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1314 device_destroy(pdrvdata.class, port->dev->devt);
1315 cdev_del(port->cdev);
1316
1317 kfree(port->name);
1318
1319 debugfs_remove(port->debugfs_file);
1320
Amit Shahb353a6b2010-09-02 18:38:29 +05301321 /*
1322 * Locks around here are not necessary - a port can't be
1323 * opened after we removed the port struct from ports_list
1324 * above.
1325 */
1326 kref_put(&port->kref, remove_port);
Amit Shah1f7aa422009-12-21 22:27:31 +05301327}
1328
Amit Shah17634ba2009-12-21 21:03:25 +05301329/* Any private messages that the Host and Guest want to share */
1330static void handle_control_message(struct ports_device *portdev,
1331 struct port_buffer *buf)
1332{
1333 struct virtio_console_control *cpkt;
1334 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301335 size_t name_size;
1336 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301337
1338 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1339
1340 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001341 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301342 /* No valid header at start of buffer. Drop it. */
1343 dev_dbg(&portdev->vdev->dev,
1344 "Invalid index %u in control packet\n", cpkt->id);
1345 return;
1346 }
1347
1348 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001349 case VIRTIO_CONSOLE_PORT_ADD:
1350 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001351 dev_dbg(&portdev->vdev->dev,
1352 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001353 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1354 break;
1355 }
1356 if (cpkt->id >= portdev->config.max_nr_ports) {
1357 dev_warn(&portdev->vdev->dev,
1358 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1359 cpkt->id, portdev->config.max_nr_ports - 1);
1360 break;
1361 }
1362 add_port(portdev, cpkt->id);
1363 break;
1364 case VIRTIO_CONSOLE_PORT_REMOVE:
Amit Shahb353a6b2010-09-02 18:38:29 +05301365 unplug_port(port);
Amit Shahf909f852010-05-19 22:15:48 -06001366 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301367 case VIRTIO_CONSOLE_CONSOLE_PORT:
1368 if (!cpkt->value)
1369 break;
1370 if (is_console_port(port))
1371 break;
1372
1373 init_port_console(port);
Christian Borntraeger5e384832011-09-22 23:44:23 +05301374 complete(&early_console_added);
Amit Shah17634ba2009-12-21 21:03:25 +05301375 /*
1376 * Could remove the port here in case init fails - but
1377 * have to notify the host first.
1378 */
1379 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301380 case VIRTIO_CONSOLE_RESIZE: {
1381 struct {
1382 __u16 rows;
1383 __u16 cols;
1384 } size;
1385
Amit Shah17634ba2009-12-21 21:03:25 +05301386 if (!is_console_port(port))
1387 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301388
1389 memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt),
1390 sizeof(size));
1391 set_console_size(port, size.rows, size.cols);
1392
Amit Shah17634ba2009-12-21 21:03:25 +05301393 port->cons.hvc->irq_requested = 1;
1394 resize_console(port);
1395 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301396 }
Amit Shah2030fa42009-12-21 21:49:30 +05301397 case VIRTIO_CONSOLE_PORT_OPEN:
1398 port->host_connected = cpkt->value;
1399 wake_up_interruptible(&port->waitqueue);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001400 /*
1401 * If the host port got closed and the host had any
1402 * unconsumed buffers, we'll be able to reclaim them
1403 * now.
1404 */
1405 spin_lock_irq(&port->outvq_lock);
1406 reclaim_consumed_buffers(port);
1407 spin_unlock_irq(&port->outvq_lock);
Amit Shah3eae0ad2010-09-02 18:47:52 +05301408
1409 /*
1410 * If the guest is connected, it'll be interested in
1411 * knowing the host connection state changed.
1412 */
1413 send_sigio_to_port(port);
Amit Shah2030fa42009-12-21 21:49:30 +05301414 break;
Amit Shah431edb82009-12-21 21:57:40 +05301415 case VIRTIO_CONSOLE_PORT_NAME:
1416 /*
Amit Shah291024e2011-09-14 13:06:40 +05301417 * If we woke up after hibernation, we can get this
1418 * again. Skip it in that case.
1419 */
1420 if (port->name)
1421 break;
1422
1423 /*
Amit Shah431edb82009-12-21 21:57:40 +05301424 * Skip the size of the header and the cpkt to get the size
1425 * of the name that was sent
1426 */
1427 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1428
1429 port->name = kmalloc(name_size, GFP_KERNEL);
1430 if (!port->name) {
1431 dev_err(port->dev,
1432 "Not enough space to store port name\n");
1433 break;
1434 }
1435 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1436 name_size - 1);
1437 port->name[name_size - 1] = 0;
1438
1439 /*
1440 * Since we only have one sysfs attribute, 'name',
1441 * create it only if we have a name for the port.
1442 */
1443 err = sysfs_create_group(&port->dev->kobj,
1444 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301445 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301446 dev_err(port->dev,
1447 "Error %d creating sysfs device attributes\n",
1448 err);
Amit Shahec642132010-03-19 17:36:43 +05301449 } else {
1450 /*
1451 * Generate a udev event so that appropriate
1452 * symlinks can be created based on udev
1453 * rules.
1454 */
1455 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1456 }
Amit Shah431edb82009-12-21 21:57:40 +05301457 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301458 }
1459}
1460
1461static void control_work_handler(struct work_struct *work)
1462{
1463 struct ports_device *portdev;
1464 struct virtqueue *vq;
1465 struct port_buffer *buf;
1466 unsigned int len;
1467
1468 portdev = container_of(work, struct ports_device, control_work);
1469 vq = portdev->c_ivq;
1470
1471 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001472 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301473 spin_unlock(&portdev->cvq_lock);
1474
1475 buf->len = len;
1476 buf->offset = 0;
1477
1478 handle_control_message(portdev, buf);
1479
1480 spin_lock(&portdev->cvq_lock);
1481 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1482 dev_warn(&portdev->vdev->dev,
1483 "Error adding buffer to queue\n");
1484 free_buf(buf);
1485 }
1486 }
1487 spin_unlock(&portdev->cvq_lock);
1488}
1489
Amit Shah2770c5e2011-01-31 13:06:36 +05301490static void out_intr(struct virtqueue *vq)
1491{
1492 struct port *port;
1493
1494 port = find_port_by_vq(vq->vdev->priv, vq);
1495 if (!port)
1496 return;
1497
1498 wake_up_interruptible(&port->waitqueue);
1499}
1500
Amit Shah17634ba2009-12-21 21:03:25 +05301501static void in_intr(struct virtqueue *vq)
1502{
1503 struct port *port;
1504 unsigned long flags;
1505
1506 port = find_port_by_vq(vq->vdev->priv, vq);
1507 if (!port)
1508 return;
1509
1510 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd25a9dd2011-09-14 13:06:43 +05301511 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301512
Amit Shah88f251a2009-12-21 22:15:30 +05301513 /*
1514 * Don't queue up data when port is closed. This condition
1515 * can be reached when a console port is not yet connected (no
1516 * tty is spawned) and the host sends out data to console
1517 * ports. For generic serial ports, the host won't
1518 * (shouldn't) send data till the guest is connected.
1519 */
1520 if (!port->guest_connected)
1521 discard_port_data(port);
1522
Amit Shah17634ba2009-12-21 21:03:25 +05301523 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1524
Amit Shah2030fa42009-12-21 21:49:30 +05301525 wake_up_interruptible(&port->waitqueue);
1526
Amit Shah55f6bcc2010-09-02 18:47:53 +05301527 /* Send a SIGIO indicating new data in case the process asked for it */
1528 send_sigio_to_port(port);
1529
Amit Shah17634ba2009-12-21 21:03:25 +05301530 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1531 hvc_kick();
1532}
1533
1534static void control_intr(struct virtqueue *vq)
1535{
1536 struct ports_device *portdev;
1537
1538 portdev = vq->vdev->priv;
1539 schedule_work(&portdev->control_work);
1540}
1541
Amit Shah7f5d8102009-12-21 22:22:08 +05301542static void config_intr(struct virtio_device *vdev)
1543{
1544 struct ports_device *portdev;
1545
1546 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001547
Amit Shah4038f5b72010-05-06 02:05:07 +05301548 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301549 struct port *port;
1550 u16 rows, cols;
1551
1552 vdev->config->get(vdev,
1553 offsetof(struct virtio_console_config, cols),
1554 &cols, sizeof(u16));
1555 vdev->config->get(vdev,
1556 offsetof(struct virtio_console_config, rows),
1557 &rows, sizeof(u16));
1558
1559 port = find_port_by_id(portdev, 0);
1560 set_console_size(port, rows, cols);
1561
Amit Shah4038f5b72010-05-06 02:05:07 +05301562 /*
1563 * We'll use this way of resizing only for legacy
1564 * support. For newer userspace
1565 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1566 * to indicate console size changes so that it can be
1567 * done per-port.
1568 */
Amit Shah97788292010-05-06 02:05:08 +05301569 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301570 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301571}
1572
Amit Shah2658a792010-01-18 19:15:11 +05301573static int init_vqs(struct ports_device *portdev)
1574{
1575 vq_callback_t **io_callbacks;
1576 char **io_names;
1577 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301578 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301579 int err;
1580
Amit Shah17634ba2009-12-21 21:03:25 +05301581 nr_ports = portdev->config.max_nr_ports;
1582 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301583
1584 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301585 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301586 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301587 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1588 GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301589 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1590 GFP_KERNEL);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001591 if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs ||
Amit Shah286f9a22011-09-14 13:06:39 +05301592 !portdev->out_vqs) {
Amit Shah2658a792010-01-18 19:15:11 +05301593 err = -ENOMEM;
Jiri Slaby22e132f2010-11-06 10:06:50 +01001594 goto free;
Amit Shah2658a792010-01-18 19:15:11 +05301595 }
1596
Amit Shah17634ba2009-12-21 21:03:25 +05301597 /*
1598 * For backward compat (newer host but older guest), the host
1599 * spawns a console port first and also inits the vqs for port
1600 * 0 before others.
1601 */
1602 j = 0;
1603 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301604 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301605 io_names[j] = "input";
1606 io_names[j + 1] = "output";
1607 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301608
Amit Shah17634ba2009-12-21 21:03:25 +05301609 if (use_multiport(portdev)) {
1610 io_callbacks[j] = control_intr;
1611 io_callbacks[j + 1] = NULL;
1612 io_names[j] = "control-i";
1613 io_names[j + 1] = "control-o";
1614
1615 for (i = 1; i < nr_ports; i++) {
1616 j += 2;
1617 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301618 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301619 io_names[j] = "input";
1620 io_names[j + 1] = "output";
1621 }
1622 }
Amit Shah2658a792010-01-18 19:15:11 +05301623 /* Find the queues. */
1624 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1625 io_callbacks,
1626 (const char **)io_names);
1627 if (err)
Jiri Slaby22e132f2010-11-06 10:06:50 +01001628 goto free;
Amit Shah2658a792010-01-18 19:15:11 +05301629
Amit Shah17634ba2009-12-21 21:03:25 +05301630 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301631 portdev->in_vqs[0] = vqs[0];
1632 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301633 j += 2;
1634 if (use_multiport(portdev)) {
1635 portdev->c_ivq = vqs[j];
1636 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301637
Amit Shah17634ba2009-12-21 21:03:25 +05301638 for (i = 1; i < nr_ports; i++) {
1639 j += 2;
1640 portdev->in_vqs[i] = vqs[j];
1641 portdev->out_vqs[i] = vqs[j + 1];
1642 }
1643 }
Amit Shah2658a792010-01-18 19:15:11 +05301644 kfree(io_names);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001645 kfree(io_callbacks);
Amit Shah2658a792010-01-18 19:15:11 +05301646 kfree(vqs);
1647
1648 return 0;
1649
Jiri Slaby22e132f2010-11-06 10:06:50 +01001650free:
Amit Shah2658a792010-01-18 19:15:11 +05301651 kfree(portdev->out_vqs);
Amit Shah2658a792010-01-18 19:15:11 +05301652 kfree(portdev->in_vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001653 kfree(io_names);
1654 kfree(io_callbacks);
Amit Shah2658a792010-01-18 19:15:11 +05301655 kfree(vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001656
Amit Shah2658a792010-01-18 19:15:11 +05301657 return err;
1658}
1659
Amit Shahfb08bd22009-12-21 21:36:04 +05301660static const struct file_operations portdev_fops = {
1661 .owner = THIS_MODULE,
1662};
1663
Amit Shaha0e2dbf2011-12-22 16:58:27 +05301664static void remove_vqs(struct ports_device *portdev)
1665{
1666 portdev->vdev->config->del_vqs(portdev->vdev);
1667 kfree(portdev->in_vqs);
1668 kfree(portdev->out_vqs);
1669}
1670
1671static void remove_controlq_data(struct ports_device *portdev)
1672{
1673 struct port_buffer *buf;
1674 unsigned int len;
1675
1676 if (!use_multiport(portdev))
1677 return;
1678
1679 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1680 free_buf(buf);
1681
1682 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1683 free_buf(buf);
1684}
1685
Amit Shah1c85bf32010-01-18 19:15:07 +05301686/*
1687 * Once we're further in boot, we get probed like any other virtio
1688 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301689 *
1690 * If the host also supports multiple console ports, we check the
1691 * config space to see how many ports the host has spawned. We
1692 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301693 */
1694static int __devinit virtcons_probe(struct virtio_device *vdev)
1695{
Amit Shah1c85bf32010-01-18 19:15:07 +05301696 struct ports_device *portdev;
1697 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301698 bool multiport;
Christian Borntraeger5e384832011-09-22 23:44:23 +05301699 bool early = early_put_chars != NULL;
1700
1701 /* Ensure to read early_put_chars now */
1702 barrier();
Amit Shah1c85bf32010-01-18 19:15:07 +05301703
1704 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1705 if (!portdev) {
1706 err = -ENOMEM;
1707 goto fail;
1708 }
1709
1710 /* Attach this portdev to this virtio_device, and vice-versa. */
1711 portdev->vdev = vdev;
1712 vdev->priv = portdev;
1713
Amit Shahfb08bd22009-12-21 21:36:04 +05301714 spin_lock_irq(&pdrvdata_lock);
1715 portdev->drv_index = pdrvdata.index++;
1716 spin_unlock_irq(&pdrvdata_lock);
1717
1718 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1719 &portdev_fops);
1720 if (portdev->chr_major < 0) {
1721 dev_err(&vdev->dev,
1722 "Error %d registering chrdev for device %u\n",
1723 portdev->chr_major, portdev->drv_index);
1724 err = portdev->chr_major;
1725 goto free;
1726 }
1727
Amit Shah17634ba2009-12-21 21:03:25 +05301728 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301729 portdev->config.max_nr_ports = 1;
Sasha Levin51c6d612011-08-14 17:52:31 +03001730 if (virtio_config_val(vdev, VIRTIO_CONSOLE_F_MULTIPORT,
1731 offsetof(struct virtio_console_config,
1732 max_nr_ports),
1733 &portdev->config.max_nr_ports) == 0)
Amit Shah17634ba2009-12-21 21:03:25 +05301734 multiport = true;
Amit Shah17634ba2009-12-21 21:03:25 +05301735
Amit Shah2658a792010-01-18 19:15:11 +05301736 err = init_vqs(portdev);
1737 if (err < 0) {
1738 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301739 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301740 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301741
Amit Shah17634ba2009-12-21 21:03:25 +05301742 spin_lock_init(&portdev->ports_lock);
1743 INIT_LIST_HEAD(&portdev->ports);
1744
1745 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301746 unsigned int nr_added_bufs;
1747
Amit Shah17634ba2009-12-21 21:03:25 +05301748 spin_lock_init(&portdev->cvq_lock);
1749 INIT_WORK(&portdev->control_work, &control_work_handler);
1750
Amit Shah335a64a5c2010-02-24 10:37:44 +05301751 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1752 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301753 dev_err(&vdev->dev,
1754 "Error allocating buffers for control queue\n");
1755 err = -ENOMEM;
1756 goto free_vqs;
1757 }
Amit Shah1d051602010-05-19 22:15:49 -06001758 } else {
1759 /*
1760 * For backward compatibility: Create a console port
1761 * if we're running on older host.
1762 */
1763 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301764 }
1765
Amit Shah6bdf2af2010-09-02 18:11:49 +05301766 spin_lock_irq(&pdrvdata_lock);
1767 list_add_tail(&portdev->list, &pdrvdata.portdevs);
1768 spin_unlock_irq(&pdrvdata_lock);
1769
Amit Shahf909f852010-05-19 22:15:48 -06001770 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1771 VIRTIO_CONSOLE_DEVICE_READY, 1);
Christian Borntraeger5e384832011-09-22 23:44:23 +05301772
1773 /*
1774 * If there was an early virtio console, assume that there are no
1775 * other consoles. We need to wait until the hvc_alloc matches the
1776 * hvc_instantiate, otherwise tty_open will complain, resulting in
1777 * a "Warning: unable to open an initial console" boot failure.
1778 * Without multiport this is done in add_port above. With multiport
1779 * this might take some host<->guest communication - thus we have to
1780 * wait.
1781 */
1782 if (multiport && early)
1783 wait_for_completion(&early_console_added);
1784
Rusty Russell31610432007-10-22 11:03:39 +10001785 return 0;
1786
Amit Shah22a29ea2010-02-12 10:32:17 +05301787free_vqs:
Julia Lawall0643e4c2010-05-15 11:45:53 +02001788 /* The host might want to notify mgmt sw about device add failure */
1789 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1790 VIRTIO_CONSOLE_DEVICE_READY, 0);
Amit Shaha0e2dbf2011-12-22 16:58:27 +05301791 remove_vqs(portdev);
Amit Shahfb08bd22009-12-21 21:36:04 +05301792free_chrdev:
1793 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001794free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301795 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001796fail:
1797 return err;
1798}
1799
Amit Shah71778762010-02-12 10:32:16 +05301800static void virtcons_remove(struct virtio_device *vdev)
1801{
1802 struct ports_device *portdev;
1803 struct port *port, *port2;
Amit Shah71778762010-02-12 10:32:16 +05301804
1805 portdev = vdev->priv;
1806
Amit Shah6bdf2af2010-09-02 18:11:49 +05301807 spin_lock_irq(&pdrvdata_lock);
1808 list_del(&portdev->list);
1809 spin_unlock_irq(&pdrvdata_lock);
1810
Amit Shah02238952010-09-02 18:11:40 +05301811 /* Disable interrupts for vqs */
1812 vdev->config->reset(vdev);
1813 /* Finish up work that's lined up */
Sjur Brændeland0b2d4e12013-01-22 09:50:26 +10301814 if (use_multiport(portdev))
1815 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301816
1817 list_for_each_entry_safe(port, port2, &portdev->ports, list)
Amit Shahb353a6b2010-09-02 18:38:29 +05301818 unplug_port(port);
Amit Shah71778762010-02-12 10:32:16 +05301819
1820 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1821
Amit Shahe0620132010-09-02 18:38:30 +05301822 /*
1823 * When yanking out a device, we immediately lose the
1824 * (device-side) queues. So there's no point in keeping the
1825 * guest side around till we drop our final reference. This
1826 * also means that any ports which are in an open state will
1827 * have to just stop using the port, as the vqs are going
1828 * away.
1829 */
Amit Shaha0e2dbf2011-12-22 16:58:27 +05301830 remove_controlq_data(portdev);
1831 remove_vqs(portdev);
Amit Shah71778762010-02-12 10:32:16 +05301832 kfree(portdev);
1833}
1834
Rusty Russell31610432007-10-22 11:03:39 +10001835static struct virtio_device_id id_table[] = {
1836 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1837 { 0 },
1838};
1839
Christian Borntraegerc2983452008-11-25 13:36:26 +01001840static unsigned int features[] = {
1841 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001842 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001843};
1844
Amit Shah2b8f41d2011-12-22 16:58:28 +05301845#ifdef CONFIG_PM
1846static int virtcons_freeze(struct virtio_device *vdev)
1847{
1848 struct ports_device *portdev;
1849 struct port *port;
1850
1851 portdev = vdev->priv;
1852
1853 vdev->config->reset(vdev);
1854
Amit Shahc743d092012-01-06 16:19:08 +05301855 virtqueue_disable_cb(portdev->c_ivq);
Amit Shah2b8f41d2011-12-22 16:58:28 +05301856 cancel_work_sync(&portdev->control_work);
Amit Shahc743d092012-01-06 16:19:08 +05301857 /*
1858 * Once more: if control_work_handler() was running, it would
1859 * enable the cb as the last step.
1860 */
1861 virtqueue_disable_cb(portdev->c_ivq);
Amit Shah2b8f41d2011-12-22 16:58:28 +05301862 remove_controlq_data(portdev);
1863
1864 list_for_each_entry(port, &portdev->ports, list) {
Amit Shahc743d092012-01-06 16:19:08 +05301865 virtqueue_disable_cb(port->in_vq);
1866 virtqueue_disable_cb(port->out_vq);
Amit Shah2b8f41d2011-12-22 16:58:28 +05301867 /*
1868 * We'll ask the host later if the new invocation has
1869 * the port opened or closed.
1870 */
1871 port->host_connected = false;
1872 remove_port_data(port);
1873 }
1874 remove_vqs(portdev);
1875
1876 return 0;
1877}
1878
1879static int virtcons_restore(struct virtio_device *vdev)
1880{
1881 struct ports_device *portdev;
1882 struct port *port;
1883 int ret;
1884
1885 portdev = vdev->priv;
1886
1887 ret = init_vqs(portdev);
1888 if (ret)
1889 return ret;
1890
1891 if (use_multiport(portdev))
1892 fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1893
1894 list_for_each_entry(port, &portdev->ports, list) {
1895 port->in_vq = portdev->in_vqs[port->id];
1896 port->out_vq = portdev->out_vqs[port->id];
1897
1898 fill_queue(port->in_vq, &port->inbuf_lock);
1899
1900 /* Get port open/close status on the host */
1901 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
Amit Shahfa8b66c2012-04-25 14:40:39 +05301902
1903 /*
1904 * If a port was open at the time of suspending, we
1905 * have to let the host know that it's still open.
1906 */
1907 if (port->guest_connected)
1908 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
Amit Shah2b8f41d2011-12-22 16:58:28 +05301909 }
1910 return 0;
1911}
1912#endif
1913
Rusty Russell31610432007-10-22 11:03:39 +10001914static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001915 .feature_table = features,
1916 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001917 .driver.name = KBUILD_MODNAME,
1918 .driver.owner = THIS_MODULE,
1919 .id_table = id_table,
1920 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301921 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301922 .config_changed = config_intr,
Amit Shah2b8f41d2011-12-22 16:58:28 +05301923#ifdef CONFIG_PM
1924 .freeze = virtcons_freeze,
1925 .restore = virtcons_restore,
1926#endif
Rusty Russell31610432007-10-22 11:03:39 +10001927};
1928
1929static int __init init(void)
1930{
Amit Shahfb08bd22009-12-21 21:36:04 +05301931 int err;
1932
1933 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1934 if (IS_ERR(pdrvdata.class)) {
1935 err = PTR_ERR(pdrvdata.class);
1936 pr_err("Error %d creating virtio-ports class\n", err);
1937 return err;
1938 }
Amit Shahd99393e2009-12-21 22:36:21 +05301939
1940 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1941 if (!pdrvdata.debugfs_dir) {
1942 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1943 PTR_ERR(pdrvdata.debugfs_dir));
1944 }
Amit Shah38edf582010-01-18 19:15:05 +05301945 INIT_LIST_HEAD(&pdrvdata.consoles);
Amit Shah6bdf2af2010-09-02 18:11:49 +05301946 INIT_LIST_HEAD(&pdrvdata.portdevs);
Amit Shah38edf582010-01-18 19:15:05 +05301947
Rusty Russell31610432007-10-22 11:03:39 +10001948 return register_virtio_driver(&virtio_console);
1949}
Amit Shah71778762010-02-12 10:32:16 +05301950
1951static void __exit fini(void)
1952{
1953 unregister_virtio_driver(&virtio_console);
1954
1955 class_destroy(pdrvdata.class);
1956 if (pdrvdata.debugfs_dir)
1957 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1958}
Rusty Russell31610432007-10-22 11:03:39 +10001959module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301960module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001961
1962MODULE_DEVICE_TABLE(virtio, id_table);
1963MODULE_DESCRIPTION("Virtio console driver");
1964MODULE_LICENSE("GPL");