blob: 387fcdf019b70ca78460360325907a3129077e0c [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Amit Shah5084f892011-01-31 13:06:37 +05303 * Copyright (C) 2009, 2010, 2011 Red Hat, Inc.
4 * Copyright (C) 2009, 2010, 2011 Amit Shah <amit.shah@redhat.com>
Rusty Russell31610432007-10-22 11:03:39 +10005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
Amit Shahfb08bd22009-12-21 21:36:04 +053020#include <linux/cdev.h>
Amit Shahd99393e2009-12-21 22:36:21 +053021#include <linux/debugfs.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053022#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100023#include <linux/err.h>
Amit Shaha08fa922011-09-14 13:06:41 +053024#include <linux/freezer.h>
Amit Shah2030fa42009-12-21 21:49:30 +053025#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100026#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053027#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053028#include <linux/poll.h>
29#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053031#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100032#include <linux/virtio.h>
33#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053034#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053035#include <linux/workqueue.h>
Amit Shah51df0ac2011-02-01 09:31:25 +053036#include "../tty/hvc/hvc_console.h"
Rusty Russell31610432007-10-22 11:03:39 +100037
Amit Shah38edf582010-01-18 19:15:05 +053038/*
39 * This is a global struct for storing common data for all the devices
40 * this driver handles.
41 *
42 * Mainly, it has a linked list for all the consoles in one place so
43 * that callbacks from hvc for get_chars(), put_chars() work properly
44 * across multiple devices and multiple ports per device.
45 */
46struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053047 /* Used for registering chardevs */
48 struct class *class;
49
Amit Shahd99393e2009-12-21 22:36:21 +053050 /* Used for exporting per-port information to debugfs */
51 struct dentry *debugfs_dir;
52
Amit Shah6bdf2af2010-09-02 18:11:49 +053053 /* List of all the devices we're handling */
54 struct list_head portdevs;
55
Amit Shahfb08bd22009-12-21 21:36:04 +053056 /* Number of devices this driver is handling */
57 unsigned int index;
58
Rusty Russelld8a02bd2010-01-18 19:15:06 +053059 /*
60 * This is used to keep track of the number of hvc consoles
61 * spawned by this driver. This number is given as the first
62 * argument to hvc_alloc(). To correctly map an initial
63 * console spawned via hvc_instantiate to the console being
64 * hooked up via hvc_alloc, we need to pass the same vtermno.
65 *
66 * We also just assume the first console being initialised was
67 * the first one that got used as the initial console.
68 */
69 unsigned int next_vtermno;
70
Amit Shah38edf582010-01-18 19:15:05 +053071 /* All the console devices handled by this driver */
72 struct list_head consoles;
73};
74static struct ports_driver_data pdrvdata;
75
76DEFINE_SPINLOCK(pdrvdata_lock);
77
Amit Shah4f23c572010-01-18 19:15:09 +053078/* This struct holds information that's relevant only for console ports */
79struct console {
80 /* We'll place all consoles in a list in the pdrvdata struct */
81 struct list_head list;
82
83 /* The hvc device associated with this console port */
84 struct hvc_struct *hvc;
85
Amit Shah97788292010-05-06 02:05:08 +053086 /* The size of the console */
87 struct winsize ws;
88
Amit Shah4f23c572010-01-18 19:15:09 +053089 /*
90 * This number identifies the number that we used to register
91 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
92 * number passed on by the hvc callbacks to us to
93 * differentiate between the other console ports handled by
94 * this driver
95 */
96 u32 vtermno;
97};
98
Amit Shahfdb9a052010-01-18 19:15:01 +053099struct port_buffer {
100 char *buf;
101
102 /* size of the buffer in *buf above */
103 size_t size;
104
105 /* used length of the buffer */
106 size_t len;
107 /* offset in the buf from which to consume data */
108 size_t offset;
109};
110
Amit Shah17634ba2009-12-21 21:03:25 +0530111/*
112 * This is a per-device struct that stores data common to all the
113 * ports for that device (vdev->priv).
114 */
115struct ports_device {
Amit Shah6bdf2af2010-09-02 18:11:49 +0530116 /* Next portdev in the list, head is in the pdrvdata struct */
117 struct list_head list;
118
Amit Shah17634ba2009-12-21 21:03:25 +0530119 /*
120 * Workqueue handlers where we process deferred work after
121 * notification
122 */
123 struct work_struct control_work;
124
125 struct list_head ports;
126
127 /* To protect the list of ports */
128 spinlock_t ports_lock;
129
130 /* To protect the vq operations for the control channel */
131 spinlock_t cvq_lock;
132
133 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600134 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530135
136 /* The virtio device we're associated with */
137 struct virtio_device *vdev;
138
139 /*
140 * A couple of virtqueues for the control channel: one for
141 * guest->host transfers, one for host->guest transfers
142 */
143 struct virtqueue *c_ivq, *c_ovq;
144
145 /* Array of per-port IO virtqueues */
146 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530147
148 /* Used for numbering devices for sysfs and debugfs */
149 unsigned int drv_index;
150
151 /* Major number for this device. Ports will be created as minors. */
152 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530153};
154
Amit Shah17e5b4f2011-09-14 13:06:46 +0530155struct port_stats {
156 unsigned long bytes_sent, bytes_received, bytes_discarded;
157};
158
Amit Shah1c85bf32010-01-18 19:15:07 +0530159/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530160struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530161 /* Next port in the list, head is in the ports_device */
162 struct list_head list;
163
Amit Shah1c85bf32010-01-18 19:15:07 +0530164 /* Pointer to the parent virtio_console device */
165 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530166
167 /* The current buffer from which data has to be fed to readers */
168 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000169
Amit Shah203baab2010-01-18 19:15:12 +0530170 /*
171 * To protect the operations on the in_vq associated with this
172 * port. Has to be a spinlock because it can be called from
173 * interrupt context (get_char()).
174 */
175 spinlock_t inbuf_lock;
176
Amit Shahcdfadfc2010-05-19 22:15:50 -0600177 /* Protect the operations on the out_vq. */
178 spinlock_t outvq_lock;
179
Amit Shah1c85bf32010-01-18 19:15:07 +0530180 /* The IO vqs for this port */
181 struct virtqueue *in_vq, *out_vq;
182
Amit Shahd99393e2009-12-21 22:36:21 +0530183 /* File in the debugfs directory that exposes this port's information */
184 struct dentry *debugfs_file;
185
Amit Shah4f23c572010-01-18 19:15:09 +0530186 /*
Amit Shah17e5b4f2011-09-14 13:06:46 +0530187 * Keep count of the bytes sent, received and discarded for
188 * this port for accounting and debugging purposes. These
189 * counts are not reset across port open / close events.
190 */
191 struct port_stats stats;
192
193 /*
Amit Shah4f23c572010-01-18 19:15:09 +0530194 * The entries in this struct will be valid if this port is
195 * hooked up to an hvc console
196 */
197 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530198
Amit Shahfb08bd22009-12-21 21:36:04 +0530199 /* Each port associates with a separate char device */
Amit Shahd22a6982010-09-02 18:20:59 +0530200 struct cdev *cdev;
Amit Shahfb08bd22009-12-21 21:36:04 +0530201 struct device *dev;
202
Amit Shahb353a6b2010-09-02 18:38:29 +0530203 /* Reference-counting to handle port hot-unplugs and file operations */
204 struct kref kref;
205
Amit Shah2030fa42009-12-21 21:49:30 +0530206 /* A waitqueue for poll() or blocking read operations */
207 wait_queue_head_t waitqueue;
208
Amit Shah431edb82009-12-21 21:57:40 +0530209 /* The 'name' of the port that we expose via sysfs properties */
210 char *name;
211
Amit Shah3eae0ad2010-09-02 18:47:52 +0530212 /* We can notify apps of host connect / disconnect events via SIGIO */
213 struct fasync_struct *async_queue;
214
Amit Shah17634ba2009-12-21 21:03:25 +0530215 /* The 'id' to identify the port with the Host */
216 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530217
Amit Shahcdfadfc2010-05-19 22:15:50 -0600218 bool outvq_full;
219
Amit Shah2030fa42009-12-21 21:49:30 +0530220 /* Is the host device open */
221 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530222
223 /* We should allow only one process to open a port */
224 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530225};
Rusty Russell31610432007-10-22 11:03:39 +1000226
Rusty Russell971f3392010-01-18 19:14:56 +0530227/* This is the very early arch-specified put chars function. */
228static int (*early_put_chars)(u32, const char *, int);
229
Amit Shah38edf582010-01-18 19:15:05 +0530230static struct port *find_port_by_vtermno(u32 vtermno)
231{
232 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530233 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530234 unsigned long flags;
235
236 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530237 list_for_each_entry(cons, &pdrvdata.consoles, list) {
238 if (cons->vtermno == vtermno) {
239 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530240 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530241 }
Amit Shah38edf582010-01-18 19:15:05 +0530242 }
243 port = NULL;
244out:
245 spin_unlock_irqrestore(&pdrvdata_lock, flags);
246 return port;
247}
248
Amit Shah04950cd2010-09-02 18:20:58 +0530249static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev,
250 dev_t dev)
251{
252 struct port *port;
253 unsigned long flags;
254
255 spin_lock_irqsave(&portdev->ports_lock, flags);
256 list_for_each_entry(port, &portdev->ports, list)
Amit Shahd22a6982010-09-02 18:20:59 +0530257 if (port->cdev->dev == dev)
Amit Shah04950cd2010-09-02 18:20:58 +0530258 goto out;
259 port = NULL;
260out:
261 spin_unlock_irqrestore(&portdev->ports_lock, flags);
262
263 return port;
264}
265
266static struct port *find_port_by_devt(dev_t dev)
267{
268 struct ports_device *portdev;
269 struct port *port;
270 unsigned long flags;
271
272 spin_lock_irqsave(&pdrvdata_lock, flags);
273 list_for_each_entry(portdev, &pdrvdata.portdevs, list) {
274 port = find_port_by_devt_in_portdev(portdev, dev);
275 if (port)
276 goto out;
277 }
278 port = NULL;
279out:
280 spin_unlock_irqrestore(&pdrvdata_lock, flags);
281 return port;
282}
283
Amit Shah17634ba2009-12-21 21:03:25 +0530284static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
285{
286 struct port *port;
287 unsigned long flags;
288
289 spin_lock_irqsave(&portdev->ports_lock, flags);
290 list_for_each_entry(port, &portdev->ports, list)
291 if (port->id == id)
292 goto out;
293 port = NULL;
294out:
295 spin_unlock_irqrestore(&portdev->ports_lock, flags);
296
297 return port;
298}
299
Amit Shah203baab2010-01-18 19:15:12 +0530300static struct port *find_port_by_vq(struct ports_device *portdev,
301 struct virtqueue *vq)
302{
303 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530304 unsigned long flags;
305
Amit Shah17634ba2009-12-21 21:03:25 +0530306 spin_lock_irqsave(&portdev->ports_lock, flags);
307 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530308 if (port->in_vq == vq || port->out_vq == vq)
309 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530310 port = NULL;
311out:
Amit Shah17634ba2009-12-21 21:03:25 +0530312 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530313 return port;
314}
315
Amit Shah17634ba2009-12-21 21:03:25 +0530316static bool is_console_port(struct port *port)
317{
318 if (port->cons.hvc)
319 return true;
320 return false;
321}
322
323static inline bool use_multiport(struct ports_device *portdev)
324{
325 /*
326 * This condition can be true when put_chars is called from
327 * early_init
328 */
329 if (!portdev->vdev)
330 return 0;
331 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
332}
333
Amit Shahfdb9a052010-01-18 19:15:01 +0530334static void free_buf(struct port_buffer *buf)
335{
336 kfree(buf->buf);
337 kfree(buf);
338}
339
340static struct port_buffer *alloc_buf(size_t buf_size)
341{
342 struct port_buffer *buf;
343
344 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
345 if (!buf)
346 goto fail;
347 buf->buf = kzalloc(buf_size, GFP_KERNEL);
348 if (!buf->buf)
349 goto free_buf;
350 buf->len = 0;
351 buf->offset = 0;
352 buf->size = buf_size;
353 return buf;
354
355free_buf:
356 kfree(buf);
357fail:
358 return NULL;
359}
360
Amit Shaha3cde442010-01-18 19:15:03 +0530361/* Callers should take appropriate locks */
Amit Shahdefde662011-09-14 13:06:42 +0530362static struct port_buffer *get_inbuf(struct port *port)
Amit Shaha3cde442010-01-18 19:15:03 +0530363{
364 struct port_buffer *buf;
Amit Shaha3cde442010-01-18 19:15:03 +0530365 unsigned int len;
366
Amit Shahd25a9dd2011-09-14 13:06:43 +0530367 if (port->inbuf)
368 return port->inbuf;
369
370 buf = virtqueue_get_buf(port->in_vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530371 if (buf) {
372 buf->len = len;
373 buf->offset = 0;
Amit Shah17e5b4f2011-09-14 13:06:46 +0530374 port->stats.bytes_received += len;
Amit Shaha3cde442010-01-18 19:15:03 +0530375 }
376 return buf;
377}
378
Rusty Russella23ea922010-01-18 19:14:55 +0530379/*
Amit Shahe27b5192010-01-18 19:15:02 +0530380 * Create a scatter-gather list representing our input buffer and put
381 * it in the queue.
382 *
383 * Callers should take appropriate locks.
384 */
Amit Shah203baab2010-01-18 19:15:12 +0530385static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530386{
387 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530388 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530389
Amit Shahe27b5192010-01-18 19:15:02 +0530390 sg_init_one(sg, buf->buf, buf->size);
391
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300392 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
393 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530394 return ret;
395}
396
Amit Shah88f251a2009-12-21 22:15:30 +0530397/* Discard any unread data this port has. Callers lockers. */
398static void discard_port_data(struct port *port)
399{
400 struct port_buffer *buf;
Amit Shah2d24cda2011-09-14 13:06:45 +0530401 unsigned int err;
Amit Shah88f251a2009-12-21 22:15:30 +0530402
Amit Shahd7a62cd2011-03-04 14:04:33 +1030403 if (!port->portdev) {
404 /* Device has been unplugged. vqs are already gone. */
405 return;
406 }
Amit Shah2d24cda2011-09-14 13:06:45 +0530407 buf = get_inbuf(port);
Amit Shah88f251a2009-12-21 22:15:30 +0530408
Amit Shahce072a02011-09-14 13:06:44 +0530409 err = 0;
Amit Shahd6933562010-02-12 10:32:18 +0530410 while (buf) {
Amit Shah17e5b4f2011-09-14 13:06:46 +0530411 port->stats.bytes_discarded += buf->len - buf->offset;
Amit Shah2d24cda2011-09-14 13:06:45 +0530412 if (add_inbuf(port->in_vq, buf) < 0) {
Amit Shahce072a02011-09-14 13:06:44 +0530413 err++;
Amit Shahd6933562010-02-12 10:32:18 +0530414 free_buf(buf);
415 }
Amit Shah2d24cda2011-09-14 13:06:45 +0530416 port->inbuf = NULL;
417 buf = get_inbuf(port);
Amit Shah88f251a2009-12-21 22:15:30 +0530418 }
Amit Shahce072a02011-09-14 13:06:44 +0530419 if (err)
Amit Shahd6933562010-02-12 10:32:18 +0530420 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
Amit Shahce072a02011-09-14 13:06:44 +0530421 err);
Amit Shah88f251a2009-12-21 22:15:30 +0530422}
423
Amit Shah203baab2010-01-18 19:15:12 +0530424static bool port_has_data(struct port *port)
425{
426 unsigned long flags;
427 bool ret;
428
Amit Shahd6933562010-02-12 10:32:18 +0530429 ret = false;
Amit Shahd25a9dd2011-09-14 13:06:43 +0530430 spin_lock_irqsave(&port->inbuf_lock, flags);
431 port->inbuf = get_inbuf(port);
432 if (port->inbuf)
433 ret = true;
434
Amit Shah203baab2010-01-18 19:15:12 +0530435 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530436 return ret;
437}
438
Amit Shah3425e702010-05-19 22:15:46 -0600439static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
440 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530441{
442 struct scatterlist sg[1];
443 struct virtio_console_control cpkt;
444 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530445 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530446
Amit Shah3425e702010-05-19 22:15:46 -0600447 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530448 return 0;
449
Amit Shah3425e702010-05-19 22:15:46 -0600450 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530451 cpkt.event = event;
452 cpkt.value = value;
453
Amit Shah3425e702010-05-19 22:15:46 -0600454 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530455
456 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300457 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
458 virtqueue_kick(vq);
459 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530460 cpu_relax();
461 }
462 return 0;
463}
464
Amit Shah3425e702010-05-19 22:15:46 -0600465static ssize_t send_control_msg(struct port *port, unsigned int event,
466 unsigned int value)
467{
Amit Shah84ec06c2010-09-02 18:11:42 +0530468 /* Did the port get unplugged before userspace closed it? */
469 if (port->portdev)
470 return __send_control_msg(port->portdev, port->id, event, value);
471 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600472}
473
Amit Shahcdfadfc2010-05-19 22:15:50 -0600474/* Callers must take the port->outvq_lock */
475static void reclaim_consumed_buffers(struct port *port)
476{
477 void *buf;
478 unsigned int len;
479
Amit Shahd7a62cd2011-03-04 14:04:33 +1030480 if (!port->portdev) {
481 /* Device has been unplugged. vqs are already gone. */
482 return;
483 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600484 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
485 kfree(buf);
486 port->outvq_full = false;
487 }
488}
489
490static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
491 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530492{
493 struct scatterlist sg[1];
494 struct virtqueue *out_vq;
495 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600496 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530497 unsigned int len;
498
499 out_vq = port->out_vq;
500
Amit Shahcdfadfc2010-05-19 22:15:50 -0600501 spin_lock_irqsave(&port->outvq_lock, flags);
502
503 reclaim_consumed_buffers(port);
504
Amit Shahf997f00b2009-12-21 17:28:51 +0530505 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300506 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530507
508 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300509 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530510
511 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600512 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600513 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530514 }
515
Amit Shahcdfadfc2010-05-19 22:15:50 -0600516 if (ret == 0)
517 port->outvq_full = true;
518
519 if (nonblock)
520 goto done;
521
522 /*
523 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e2010-10-20 13:45:43 +1030524 * sent. This is done for data from the hvc_console; the tty
525 * operations are performed with spinlocks held so we can't
526 * sleep here. An alternative would be to copy the data to a
527 * buffer and relax the spinning requirement. The downside is
528 * we need to kmalloc a GFP_ATOMIC buffer each time the
529 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600530 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300531 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530532 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600533done:
534 spin_unlock_irqrestore(&port->outvq_lock, flags);
Amit Shah17e5b4f2011-09-14 13:06:46 +0530535
536 port->stats.bytes_sent += in_count;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600537 /*
538 * We're expected to return the amount of data we wrote -- all
539 * of it
540 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600541 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530542}
543
Amit Shah203baab2010-01-18 19:15:12 +0530544/*
545 * Give out the data that's requested from the buffer that we have
546 * queued up.
547 */
Amit Shahb766cee2009-12-21 21:26:45 +0530548static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
549 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530550{
551 struct port_buffer *buf;
552 unsigned long flags;
553
554 if (!out_count || !port_has_data(port))
555 return 0;
556
557 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530558 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530559
Amit Shahb766cee2009-12-21 21:26:45 +0530560 if (to_user) {
561 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530562
Amit Shahb766cee2009-12-21 21:26:45 +0530563 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
564 if (ret)
565 return -EFAULT;
566 } else {
567 memcpy(out_buf, buf->buf + buf->offset, out_count);
568 }
569
Amit Shah203baab2010-01-18 19:15:12 +0530570 buf->offset += out_count;
571
572 if (buf->offset == buf->len) {
573 /*
574 * We're done using all the data in this buffer.
575 * Re-queue so that the Host can send us more data.
576 */
577 spin_lock_irqsave(&port->inbuf_lock, flags);
578 port->inbuf = NULL;
579
580 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530581 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530582
583 spin_unlock_irqrestore(&port->inbuf_lock, flags);
584 }
Amit Shahb766cee2009-12-21 21:26:45 +0530585 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530586 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530587}
588
Amit Shah2030fa42009-12-21 21:49:30 +0530589/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600590static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530591{
Amit Shah3709ea72010-09-02 18:11:43 +0530592 if (!port->guest_connected) {
593 /* Port got hot-unplugged. Let's exit. */
594 return false;
595 }
Amit Shah60caacd2010-05-19 22:15:49 -0600596 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530597}
598
Amit Shahcdfadfc2010-05-19 22:15:50 -0600599static bool will_write_block(struct port *port)
600{
601 bool ret;
602
Amit Shah60e5e0b2010-05-27 13:24:40 +0530603 if (!port->guest_connected) {
604 /* Port got hot-unplugged. Let's exit. */
605 return false;
606 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600607 if (!port->host_connected)
608 return true;
609
610 spin_lock_irq(&port->outvq_lock);
611 /*
612 * Check if the Host has consumed any buffers since we last
613 * sent data (this is only applicable for nonblocking ports).
614 */
615 reclaim_consumed_buffers(port);
616 ret = port->outvq_full;
617 spin_unlock_irq(&port->outvq_lock);
618
619 return ret;
620}
621
Amit Shah2030fa42009-12-21 21:49:30 +0530622static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
623 size_t count, loff_t *offp)
624{
625 struct port *port;
626 ssize_t ret;
627
628 port = filp->private_data;
629
630 if (!port_has_data(port)) {
631 /*
632 * If nothing's connected on the host just return 0 in
633 * case of list_empty; this tells the userspace app
634 * that there's no connection
635 */
636 if (!port->host_connected)
637 return 0;
638 if (filp->f_flags & O_NONBLOCK)
639 return -EAGAIN;
640
Amit Shaha08fa922011-09-14 13:06:41 +0530641 ret = wait_event_freezable(port->waitqueue,
642 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530643 if (ret < 0)
644 return ret;
645 }
Amit Shahb3dddb92010-09-02 18:11:45 +0530646 /* Port got hot-unplugged. */
647 if (!port->guest_connected)
648 return -ENODEV;
Amit Shah2030fa42009-12-21 21:49:30 +0530649 /*
650 * We could've received a disconnection message while we were
651 * waiting for more data.
652 *
653 * This check is not clubbed in the if() statement above as we
654 * might receive some data as well as the host could get
655 * disconnected after we got woken up from our wait. So we
656 * really want to give off whatever data we have and only then
657 * check for host_connected.
658 */
659 if (!port_has_data(port) && !port->host_connected)
660 return 0;
661
662 return fill_readbuf(port, ubuf, count, true);
663}
664
665static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
666 size_t count, loff_t *offp)
667{
668 struct port *port;
669 char *buf;
670 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600671 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530672
Amit Shah65745422010-09-14 13:26:16 +0530673 /* Userspace could be out to fool us */
674 if (!count)
675 return 0;
676
Amit Shah2030fa42009-12-21 21:49:30 +0530677 port = filp->private_data;
678
Amit Shahcdfadfc2010-05-19 22:15:50 -0600679 nonblock = filp->f_flags & O_NONBLOCK;
680
681 if (will_write_block(port)) {
682 if (nonblock)
683 return -EAGAIN;
684
Amit Shaha08fa922011-09-14 13:06:41 +0530685 ret = wait_event_freezable(port->waitqueue,
686 !will_write_block(port));
Amit Shahcdfadfc2010-05-19 22:15:50 -0600687 if (ret < 0)
688 return ret;
689 }
Amit Shahf4028112010-09-02 18:11:46 +0530690 /* Port got hot-unplugged. */
691 if (!port->guest_connected)
692 return -ENODEV;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600693
Amit Shah2030fa42009-12-21 21:49:30 +0530694 count = min((size_t)(32 * 1024), count);
695
696 buf = kmalloc(count, GFP_KERNEL);
697 if (!buf)
698 return -ENOMEM;
699
700 ret = copy_from_user(buf, ubuf, count);
701 if (ret) {
702 ret = -EFAULT;
703 goto free_buf;
704 }
705
Amit Shah531295e2010-10-20 13:45:43 +1030706 /*
707 * We now ask send_buf() to not spin for generic ports -- we
708 * can re-use the same code path that non-blocking file
709 * descriptors take for blocking file descriptors since the
710 * wait is already done and we're certain the write will go
711 * through to the host.
712 */
713 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600714 ret = send_buf(port, buf, count, nonblock);
715
716 if (nonblock && ret > 0)
717 goto out;
718
Amit Shah2030fa42009-12-21 21:49:30 +0530719free_buf:
720 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600721out:
Amit Shah2030fa42009-12-21 21:49:30 +0530722 return ret;
723}
724
725static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
726{
727 struct port *port;
728 unsigned int ret;
729
730 port = filp->private_data;
731 poll_wait(filp, &port->waitqueue, wait);
732
Amit Shah8529a502010-09-02 18:11:44 +0530733 if (!port->guest_connected) {
734 /* Port got unplugged */
735 return POLLHUP;
736 }
Amit Shah2030fa42009-12-21 21:49:30 +0530737 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530738 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530739 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600740 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530741 ret |= POLLOUT;
742 if (!port->host_connected)
743 ret |= POLLHUP;
744
745 return ret;
746}
747
Amit Shahb353a6b2010-09-02 18:38:29 +0530748static void remove_port(struct kref *kref);
749
Amit Shah2030fa42009-12-21 21:49:30 +0530750static int port_fops_release(struct inode *inode, struct file *filp)
751{
752 struct port *port;
753
754 port = filp->private_data;
755
756 /* Notify host of port being closed */
757 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
758
Amit Shah88f251a2009-12-21 22:15:30 +0530759 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530760 port->guest_connected = false;
761
Amit Shah88f251a2009-12-21 22:15:30 +0530762 discard_port_data(port);
763
764 spin_unlock_irq(&port->inbuf_lock);
765
Amit Shahcdfadfc2010-05-19 22:15:50 -0600766 spin_lock_irq(&port->outvq_lock);
767 reclaim_consumed_buffers(port);
768 spin_unlock_irq(&port->outvq_lock);
769
Amit Shahb353a6b2010-09-02 18:38:29 +0530770 /*
771 * Locks aren't necessary here as a port can't be opened after
772 * unplug, and if a port isn't unplugged, a kref would already
773 * exist for the port. Plus, taking ports_lock here would
774 * create a dependency on other locks taken by functions
775 * inside remove_port if we're the last holder of the port,
776 * creating many problems.
777 */
778 kref_put(&port->kref, remove_port);
779
Amit Shah2030fa42009-12-21 21:49:30 +0530780 return 0;
781}
782
783static int port_fops_open(struct inode *inode, struct file *filp)
784{
785 struct cdev *cdev = inode->i_cdev;
786 struct port *port;
Amit Shah8ad37e82010-09-02 18:11:48 +0530787 int ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530788
Amit Shah04950cd2010-09-02 18:20:58 +0530789 port = find_port_by_devt(cdev->dev);
Amit Shah2030fa42009-12-21 21:49:30 +0530790 filp->private_data = port;
791
Amit Shahb353a6b2010-09-02 18:38:29 +0530792 /* Prevent against a port getting hot-unplugged at the same time */
793 spin_lock_irq(&port->portdev->ports_lock);
794 kref_get(&port->kref);
795 spin_unlock_irq(&port->portdev->ports_lock);
796
Amit Shah2030fa42009-12-21 21:49:30 +0530797 /*
798 * Don't allow opening of console port devices -- that's done
799 * via /dev/hvc
800 */
Amit Shah8ad37e82010-09-02 18:11:48 +0530801 if (is_console_port(port)) {
802 ret = -ENXIO;
803 goto out;
804 }
Amit Shah2030fa42009-12-21 21:49:30 +0530805
Amit Shah3c7969c2009-11-26 11:25:38 +0530806 /* Allow only one process to open a particular port at a time */
807 spin_lock_irq(&port->inbuf_lock);
808 if (port->guest_connected) {
809 spin_unlock_irq(&port->inbuf_lock);
Amit Shah8ad37e82010-09-02 18:11:48 +0530810 ret = -EMFILE;
811 goto out;
Amit Shah3c7969c2009-11-26 11:25:38 +0530812 }
813
814 port->guest_connected = true;
815 spin_unlock_irq(&port->inbuf_lock);
816
Amit Shahcdfadfc2010-05-19 22:15:50 -0600817 spin_lock_irq(&port->outvq_lock);
818 /*
819 * There might be a chance that we missed reclaiming a few
820 * buffers in the window of the port getting previously closed
821 * and opening now.
822 */
823 reclaim_consumed_buffers(port);
824 spin_unlock_irq(&port->outvq_lock);
825
Amit Shah299fb612010-09-16 14:43:09 +0530826 nonseekable_open(inode, filp);
827
Amit Shah2030fa42009-12-21 21:49:30 +0530828 /* Notify host of port being opened */
829 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
830
831 return 0;
Amit Shah8ad37e82010-09-02 18:11:48 +0530832out:
Amit Shahb353a6b2010-09-02 18:38:29 +0530833 kref_put(&port->kref, remove_port);
Amit Shah8ad37e82010-09-02 18:11:48 +0530834 return ret;
Amit Shah2030fa42009-12-21 21:49:30 +0530835}
836
Amit Shah3eae0ad2010-09-02 18:47:52 +0530837static int port_fops_fasync(int fd, struct file *filp, int mode)
838{
839 struct port *port;
840
841 port = filp->private_data;
842 return fasync_helper(fd, filp, mode, &port->async_queue);
843}
844
Amit Shah2030fa42009-12-21 21:49:30 +0530845/*
846 * The file operations that we support: programs in the guest can open
847 * a console device, read from it, write to it, poll for data and
848 * close it. The devices are at
849 * /dev/vport<device number>p<port number>
850 */
851static const struct file_operations port_fops = {
852 .owner = THIS_MODULE,
853 .open = port_fops_open,
854 .read = port_fops_read,
855 .write = port_fops_write,
856 .poll = port_fops_poll,
857 .release = port_fops_release,
Amit Shah3eae0ad2010-09-02 18:47:52 +0530858 .fasync = port_fops_fasync,
Amit Shah299fb612010-09-16 14:43:09 +0530859 .llseek = no_llseek,
Amit Shah2030fa42009-12-21 21:49:30 +0530860};
861
Amit Shahe27b5192010-01-18 19:15:02 +0530862/*
Rusty Russella23ea922010-01-18 19:14:55 +0530863 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000864 *
Rusty Russella23ea922010-01-18 19:14:55 +0530865 * We turn the characters into a scatter-gather list, add it to the
866 * output queue and then kick the Host. Then we sit here waiting for
867 * it to finish: inefficient in theory, but in practice
868 * implementations will do it immediately (lguest's Launcher does).
869 */
Rusty Russell31610432007-10-22 11:03:39 +1000870static int put_chars(u32 vtermno, const char *buf, int count)
871{
Rusty Russell21206ed2010-01-18 19:15:00 +0530872 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530873
François Diakhaté162a6892010-03-23 18:23:15 +0530874 if (unlikely(early_put_chars))
875 return early_put_chars(vtermno, buf, count);
876
Amit Shah38edf582010-01-18 19:15:05 +0530877 port = find_port_by_vtermno(vtermno);
878 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600879 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000880
Amit Shahcdfadfc2010-05-19 22:15:50 -0600881 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000882}
883
Rusty Russella23ea922010-01-18 19:14:55 +0530884/*
Rusty Russella23ea922010-01-18 19:14:55 +0530885 * get_chars() is the callback from the hvc_console infrastructure
886 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000887 *
Amit Shah203baab2010-01-18 19:15:12 +0530888 * We call out to fill_readbuf that gets us the required data from the
889 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530890 */
Rusty Russell31610432007-10-22 11:03:39 +1000891static int get_chars(u32 vtermno, char *buf, int count)
892{
Rusty Russell21206ed2010-01-18 19:15:00 +0530893 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000894
Amit Shah6dc69f972010-05-19 22:15:47 -0600895 /* If we've not set up the port yet, we have no input to give. */
896 if (unlikely(early_put_chars))
897 return 0;
898
Amit Shah38edf582010-01-18 19:15:05 +0530899 port = find_port_by_vtermno(vtermno);
900 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600901 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530902
903 /* If we don't have an input queue yet, we can't get input. */
904 BUG_ON(!port->in_vq);
905
Amit Shahb766cee2009-12-21 21:26:45 +0530906 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000907}
Rusty Russell31610432007-10-22 11:03:39 +1000908
Amit Shahcb06e362010-01-18 19:15:08 +0530909static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100910{
Amit Shahcb06e362010-01-18 19:15:08 +0530911 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100912
Amit Shah2de16a42010-03-19 17:36:44 +0530913 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530914 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530915 return;
916
Amit Shahcb06e362010-01-18 19:15:08 +0530917 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530918 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
919 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100920}
921
Amit Shah38edf582010-01-18 19:15:05 +0530922/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200923static int notifier_add_vio(struct hvc_struct *hp, int data)
924{
Amit Shah38edf582010-01-18 19:15:05 +0530925 struct port *port;
926
927 port = find_port_by_vtermno(hp->vtermno);
928 if (!port)
929 return -EINVAL;
930
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200931 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530932 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100933
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200934 return 0;
935}
936
937static void notifier_del_vio(struct hvc_struct *hp, int data)
938{
939 hp->irq_requested = 0;
940}
941
Amit Shah17634ba2009-12-21 21:03:25 +0530942/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530943static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530944 .get_chars = get_chars,
945 .put_chars = put_chars,
946 .notifier_add = notifier_add_vio,
947 .notifier_del = notifier_del_vio,
948 .notifier_hangup = notifier_del_vio,
949};
950
951/*
952 * Console drivers are initialized very early so boot messages can go
953 * out, so we do things slightly differently from the generic virtio
954 * initialization of the net and block drivers.
955 *
956 * At this stage, the console is output-only. It's too early to set
957 * up a virtqueue, so we let the drivers do some boutique early-output
958 * thing.
959 */
960int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
961{
962 early_put_chars = put_chars;
963 return hvc_instantiate(0, 0, &hv_ops);
964}
965
Amit Shah17634ba2009-12-21 21:03:25 +0530966int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530967{
968 int ret;
969
970 /*
971 * The Host's telling us this port is a console port. Hook it
972 * up with an hvc console.
973 *
974 * To set up and manage our virtual console, we call
975 * hvc_alloc().
976 *
977 * The first argument of hvc_alloc() is the virtual console
978 * number. The second argument is the parameter for the
979 * notification mechanism (like irq number). We currently
980 * leave this as zero, virtqueues have implicit notifications.
981 *
982 * The third argument is a "struct hv_ops" containing the
983 * put_chars() get_chars(), notifier_add() and notifier_del()
984 * pointers. The final argument is the output buffer size: we
985 * can do any size, so we put PAGE_SIZE here.
986 */
987 port->cons.vtermno = pdrvdata.next_vtermno;
988
989 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
990 if (IS_ERR(port->cons.hvc)) {
991 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530992 dev_err(port->dev,
993 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530994 port->cons.hvc = NULL;
995 return ret;
996 }
997 spin_lock_irq(&pdrvdata_lock);
998 pdrvdata.next_vtermno++;
999 list_add_tail(&port->cons.list, &pdrvdata.consoles);
1000 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +05301001 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +05301002
Amit Shah1d051602010-05-19 22:15:49 -06001003 /*
1004 * Start using the new console output if this is the first
1005 * console to come up.
1006 */
1007 if (early_put_chars)
1008 early_put_chars = NULL;
1009
Amit Shah2030fa42009-12-21 21:49:30 +05301010 /* Notify host of port being opened */
1011 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
1012
Amit Shahcfa6d372010-01-18 19:15:10 +05301013 return 0;
1014}
1015
Amit Shah431edb82009-12-21 21:57:40 +05301016static ssize_t show_port_name(struct device *dev,
1017 struct device_attribute *attr, char *buffer)
1018{
1019 struct port *port;
1020
1021 port = dev_get_drvdata(dev);
1022
1023 return sprintf(buffer, "%s\n", port->name);
1024}
1025
1026static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
1027
1028static struct attribute *port_sysfs_entries[] = {
1029 &dev_attr_name.attr,
1030 NULL
1031};
1032
1033static struct attribute_group port_attribute_group = {
1034 .name = NULL, /* put in device directory */
1035 .attrs = port_sysfs_entries,
1036};
1037
Amit Shahd99393e2009-12-21 22:36:21 +05301038static int debugfs_open(struct inode *inode, struct file *filp)
1039{
1040 filp->private_data = inode->i_private;
1041 return 0;
1042}
1043
1044static 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,
1087 .open = debugfs_open,
1088 .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
1260 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1261 device_destroy(pdrvdata.class, port->dev->devt);
1262 cdev_del(port->cdev);
1263
1264 kfree(port->name);
1265
1266 debugfs_remove(port->debugfs_file);
1267
1268 kfree(port);
1269}
1270
1271/*
1272 * Port got unplugged. Remove port from portdev's list and drop the
1273 * kref reference. If no userspace has this port opened, it will
1274 * result in immediate removal the port.
1275 */
1276static void unplug_port(struct port *port)
Amit Shah1f7aa422009-12-21 22:27:31 +05301277{
Amit Shaha9cdd482010-02-12 10:32:15 +05301278 struct port_buffer *buf;
1279
Amit Shahb353a6b2010-09-02 18:38:29 +05301280 spin_lock_irq(&port->portdev->ports_lock);
1281 list_del(&port->list);
1282 spin_unlock_irq(&port->portdev->ports_lock);
1283
Amit Shah00476342010-05-27 13:24:39 +05301284 if (port->guest_connected) {
1285 port->guest_connected = false;
1286 port->host_connected = false;
1287 wake_up_interruptible(&port->waitqueue);
Amit Shaha461e112010-09-02 18:47:54 +05301288
1289 /* Let the app know the port is going down. */
1290 send_sigio_to_port(port);
Amit Shah00476342010-05-27 13:24:39 +05301291 }
1292
Amit Shah1f7aa422009-12-21 22:27:31 +05301293 if (is_console_port(port)) {
1294 spin_lock_irq(&pdrvdata_lock);
1295 list_del(&port->cons.list);
1296 spin_unlock_irq(&pdrvdata_lock);
1297 hvc_remove(port->cons.hvc);
1298 }
Amit Shah1f7aa422009-12-21 22:27:31 +05301299
Amit Shaha9cdd482010-02-12 10:32:15 +05301300 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +05301301 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301302
Amit Shahcdfadfc2010-05-19 22:15:50 -06001303 reclaim_consumed_buffers(port);
1304
Amit Shaha9cdd482010-02-12 10:32:15 +05301305 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001306 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +05301307 free_buf(buf);
1308
Amit Shahb353a6b2010-09-02 18:38:29 +05301309 /*
1310 * We should just assume the device itself has gone off --
1311 * else a close on an open port later will try to send out a
1312 * control message.
1313 */
1314 port->portdev = NULL;
Amit Shah1f7aa422009-12-21 22:27:31 +05301315
Amit Shahb353a6b2010-09-02 18:38:29 +05301316 /*
1317 * Locks around here are not necessary - a port can't be
1318 * opened after we removed the port struct from ports_list
1319 * above.
1320 */
1321 kref_put(&port->kref, remove_port);
Amit Shah1f7aa422009-12-21 22:27:31 +05301322}
1323
Amit Shah17634ba2009-12-21 21:03:25 +05301324/* Any private messages that the Host and Guest want to share */
1325static void handle_control_message(struct ports_device *portdev,
1326 struct port_buffer *buf)
1327{
1328 struct virtio_console_control *cpkt;
1329 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301330 size_t name_size;
1331 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301332
1333 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1334
1335 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001336 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301337 /* No valid header at start of buffer. Drop it. */
1338 dev_dbg(&portdev->vdev->dev,
1339 "Invalid index %u in control packet\n", cpkt->id);
1340 return;
1341 }
1342
1343 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001344 case VIRTIO_CONSOLE_PORT_ADD:
1345 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001346 dev_dbg(&portdev->vdev->dev,
1347 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001348 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1349 break;
1350 }
1351 if (cpkt->id >= portdev->config.max_nr_ports) {
1352 dev_warn(&portdev->vdev->dev,
1353 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1354 cpkt->id, portdev->config.max_nr_ports - 1);
1355 break;
1356 }
1357 add_port(portdev, cpkt->id);
1358 break;
1359 case VIRTIO_CONSOLE_PORT_REMOVE:
Amit Shahb353a6b2010-09-02 18:38:29 +05301360 unplug_port(port);
Amit Shahf909f852010-05-19 22:15:48 -06001361 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301362 case VIRTIO_CONSOLE_CONSOLE_PORT:
1363 if (!cpkt->value)
1364 break;
1365 if (is_console_port(port))
1366 break;
1367
1368 init_port_console(port);
1369 /*
1370 * Could remove the port here in case init fails - but
1371 * have to notify the host first.
1372 */
1373 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301374 case VIRTIO_CONSOLE_RESIZE: {
1375 struct {
1376 __u16 rows;
1377 __u16 cols;
1378 } size;
1379
Amit Shah17634ba2009-12-21 21:03:25 +05301380 if (!is_console_port(port))
1381 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301382
1383 memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt),
1384 sizeof(size));
1385 set_console_size(port, size.rows, size.cols);
1386
Amit Shah17634ba2009-12-21 21:03:25 +05301387 port->cons.hvc->irq_requested = 1;
1388 resize_console(port);
1389 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301390 }
Amit Shah2030fa42009-12-21 21:49:30 +05301391 case VIRTIO_CONSOLE_PORT_OPEN:
1392 port->host_connected = cpkt->value;
1393 wake_up_interruptible(&port->waitqueue);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001394 /*
1395 * If the host port got closed and the host had any
1396 * unconsumed buffers, we'll be able to reclaim them
1397 * now.
1398 */
1399 spin_lock_irq(&port->outvq_lock);
1400 reclaim_consumed_buffers(port);
1401 spin_unlock_irq(&port->outvq_lock);
Amit Shah3eae0ad2010-09-02 18:47:52 +05301402
1403 /*
1404 * If the guest is connected, it'll be interested in
1405 * knowing the host connection state changed.
1406 */
1407 send_sigio_to_port(port);
Amit Shah2030fa42009-12-21 21:49:30 +05301408 break;
Amit Shah431edb82009-12-21 21:57:40 +05301409 case VIRTIO_CONSOLE_PORT_NAME:
1410 /*
Amit Shah291024e2011-09-14 13:06:40 +05301411 * If we woke up after hibernation, we can get this
1412 * again. Skip it in that case.
1413 */
1414 if (port->name)
1415 break;
1416
1417 /*
Amit Shah431edb82009-12-21 21:57:40 +05301418 * Skip the size of the header and the cpkt to get the size
1419 * of the name that was sent
1420 */
1421 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1422
1423 port->name = kmalloc(name_size, GFP_KERNEL);
1424 if (!port->name) {
1425 dev_err(port->dev,
1426 "Not enough space to store port name\n");
1427 break;
1428 }
1429 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1430 name_size - 1);
1431 port->name[name_size - 1] = 0;
1432
1433 /*
1434 * Since we only have one sysfs attribute, 'name',
1435 * create it only if we have a name for the port.
1436 */
1437 err = sysfs_create_group(&port->dev->kobj,
1438 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301439 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301440 dev_err(port->dev,
1441 "Error %d creating sysfs device attributes\n",
1442 err);
Amit Shahec642132010-03-19 17:36:43 +05301443 } else {
1444 /*
1445 * Generate a udev event so that appropriate
1446 * symlinks can be created based on udev
1447 * rules.
1448 */
1449 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1450 }
Amit Shah431edb82009-12-21 21:57:40 +05301451 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301452 }
1453}
1454
1455static void control_work_handler(struct work_struct *work)
1456{
1457 struct ports_device *portdev;
1458 struct virtqueue *vq;
1459 struct port_buffer *buf;
1460 unsigned int len;
1461
1462 portdev = container_of(work, struct ports_device, control_work);
1463 vq = portdev->c_ivq;
1464
1465 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001466 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301467 spin_unlock(&portdev->cvq_lock);
1468
1469 buf->len = len;
1470 buf->offset = 0;
1471
1472 handle_control_message(portdev, buf);
1473
1474 spin_lock(&portdev->cvq_lock);
1475 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1476 dev_warn(&portdev->vdev->dev,
1477 "Error adding buffer to queue\n");
1478 free_buf(buf);
1479 }
1480 }
1481 spin_unlock(&portdev->cvq_lock);
1482}
1483
Amit Shah2770c5e2011-01-31 13:06:36 +05301484static void out_intr(struct virtqueue *vq)
1485{
1486 struct port *port;
1487
1488 port = find_port_by_vq(vq->vdev->priv, vq);
1489 if (!port)
1490 return;
1491
1492 wake_up_interruptible(&port->waitqueue);
1493}
1494
Amit Shah17634ba2009-12-21 21:03:25 +05301495static void in_intr(struct virtqueue *vq)
1496{
1497 struct port *port;
1498 unsigned long flags;
1499
1500 port = find_port_by_vq(vq->vdev->priv, vq);
1501 if (!port)
1502 return;
1503
1504 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd25a9dd2011-09-14 13:06:43 +05301505 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301506
Amit Shah88f251a2009-12-21 22:15:30 +05301507 /*
1508 * Don't queue up data when port is closed. This condition
1509 * can be reached when a console port is not yet connected (no
1510 * tty is spawned) and the host sends out data to console
1511 * ports. For generic serial ports, the host won't
1512 * (shouldn't) send data till the guest is connected.
1513 */
1514 if (!port->guest_connected)
1515 discard_port_data(port);
1516
Amit Shah17634ba2009-12-21 21:03:25 +05301517 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1518
Amit Shah2030fa42009-12-21 21:49:30 +05301519 wake_up_interruptible(&port->waitqueue);
1520
Amit Shah55f6bcc2010-09-02 18:47:53 +05301521 /* Send a SIGIO indicating new data in case the process asked for it */
1522 send_sigio_to_port(port);
1523
Amit Shah17634ba2009-12-21 21:03:25 +05301524 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1525 hvc_kick();
1526}
1527
1528static void control_intr(struct virtqueue *vq)
1529{
1530 struct ports_device *portdev;
1531
1532 portdev = vq->vdev->priv;
1533 schedule_work(&portdev->control_work);
1534}
1535
Amit Shah7f5d8102009-12-21 22:22:08 +05301536static void config_intr(struct virtio_device *vdev)
1537{
1538 struct ports_device *portdev;
1539
1540 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001541
Amit Shah4038f5b72010-05-06 02:05:07 +05301542 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301543 struct port *port;
1544 u16 rows, cols;
1545
1546 vdev->config->get(vdev,
1547 offsetof(struct virtio_console_config, cols),
1548 &cols, sizeof(u16));
1549 vdev->config->get(vdev,
1550 offsetof(struct virtio_console_config, rows),
1551 &rows, sizeof(u16));
1552
1553 port = find_port_by_id(portdev, 0);
1554 set_console_size(port, rows, cols);
1555
Amit Shah4038f5b72010-05-06 02:05:07 +05301556 /*
1557 * We'll use this way of resizing only for legacy
1558 * support. For newer userspace
1559 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1560 * to indicate console size changes so that it can be
1561 * done per-port.
1562 */
Amit Shah97788292010-05-06 02:05:08 +05301563 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301564 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301565}
1566
Amit Shah2658a792010-01-18 19:15:11 +05301567static int init_vqs(struct ports_device *portdev)
1568{
1569 vq_callback_t **io_callbacks;
1570 char **io_names;
1571 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301572 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301573 int err;
1574
Amit Shah17634ba2009-12-21 21:03:25 +05301575 nr_ports = portdev->config.max_nr_ports;
1576 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301577
1578 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301579 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301580 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301581 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1582 GFP_KERNEL);
Amit Shah2658a792010-01-18 19:15:11 +05301583 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1584 GFP_KERNEL);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001585 if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs ||
Amit Shah286f9a22011-09-14 13:06:39 +05301586 !portdev->out_vqs) {
Amit Shah2658a792010-01-18 19:15:11 +05301587 err = -ENOMEM;
Jiri Slaby22e132f2010-11-06 10:06:50 +01001588 goto free;
Amit Shah2658a792010-01-18 19:15:11 +05301589 }
1590
Amit Shah17634ba2009-12-21 21:03:25 +05301591 /*
1592 * For backward compat (newer host but older guest), the host
1593 * spawns a console port first and also inits the vqs for port
1594 * 0 before others.
1595 */
1596 j = 0;
1597 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301598 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301599 io_names[j] = "input";
1600 io_names[j + 1] = "output";
1601 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301602
Amit Shah17634ba2009-12-21 21:03:25 +05301603 if (use_multiport(portdev)) {
1604 io_callbacks[j] = control_intr;
1605 io_callbacks[j + 1] = NULL;
1606 io_names[j] = "control-i";
1607 io_names[j + 1] = "control-o";
1608
1609 for (i = 1; i < nr_ports; i++) {
1610 j += 2;
1611 io_callbacks[j] = in_intr;
Amit Shah2770c5e2011-01-31 13:06:36 +05301612 io_callbacks[j + 1] = out_intr;
Amit Shah17634ba2009-12-21 21:03:25 +05301613 io_names[j] = "input";
1614 io_names[j + 1] = "output";
1615 }
1616 }
Amit Shah2658a792010-01-18 19:15:11 +05301617 /* Find the queues. */
1618 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1619 io_callbacks,
1620 (const char **)io_names);
1621 if (err)
Jiri Slaby22e132f2010-11-06 10:06:50 +01001622 goto free;
Amit Shah2658a792010-01-18 19:15:11 +05301623
Amit Shah17634ba2009-12-21 21:03:25 +05301624 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301625 portdev->in_vqs[0] = vqs[0];
1626 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301627 j += 2;
1628 if (use_multiport(portdev)) {
1629 portdev->c_ivq = vqs[j];
1630 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301631
Amit Shah17634ba2009-12-21 21:03:25 +05301632 for (i = 1; i < nr_ports; i++) {
1633 j += 2;
1634 portdev->in_vqs[i] = vqs[j];
1635 portdev->out_vqs[i] = vqs[j + 1];
1636 }
1637 }
Amit Shah2658a792010-01-18 19:15:11 +05301638 kfree(io_names);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001639 kfree(io_callbacks);
Amit Shah2658a792010-01-18 19:15:11 +05301640 kfree(vqs);
1641
1642 return 0;
1643
Jiri Slaby22e132f2010-11-06 10:06:50 +01001644free:
Amit Shah2658a792010-01-18 19:15:11 +05301645 kfree(portdev->out_vqs);
Amit Shah2658a792010-01-18 19:15:11 +05301646 kfree(portdev->in_vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001647 kfree(io_names);
1648 kfree(io_callbacks);
Amit Shah2658a792010-01-18 19:15:11 +05301649 kfree(vqs);
Jiri Slaby22e132f2010-11-06 10:06:50 +01001650
Amit Shah2658a792010-01-18 19:15:11 +05301651 return err;
1652}
1653
Amit Shahfb08bd22009-12-21 21:36:04 +05301654static const struct file_operations portdev_fops = {
1655 .owner = THIS_MODULE,
1656};
1657
Amit Shah1c85bf32010-01-18 19:15:07 +05301658/*
1659 * Once we're further in boot, we get probed like any other virtio
1660 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301661 *
1662 * If the host also supports multiple console ports, we check the
1663 * config space to see how many ports the host has spawned. We
1664 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301665 */
1666static int __devinit virtcons_probe(struct virtio_device *vdev)
1667{
Amit Shah1c85bf32010-01-18 19:15:07 +05301668 struct ports_device *portdev;
1669 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301670 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301671
1672 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1673 if (!portdev) {
1674 err = -ENOMEM;
1675 goto fail;
1676 }
1677
1678 /* Attach this portdev to this virtio_device, and vice-versa. */
1679 portdev->vdev = vdev;
1680 vdev->priv = portdev;
1681
Amit Shahfb08bd22009-12-21 21:36:04 +05301682 spin_lock_irq(&pdrvdata_lock);
1683 portdev->drv_index = pdrvdata.index++;
1684 spin_unlock_irq(&pdrvdata_lock);
1685
1686 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1687 &portdev_fops);
1688 if (portdev->chr_major < 0) {
1689 dev_err(&vdev->dev,
1690 "Error %d registering chrdev for device %u\n",
1691 portdev->chr_major, portdev->drv_index);
1692 err = portdev->chr_major;
1693 goto free;
1694 }
1695
Amit Shah17634ba2009-12-21 21:03:25 +05301696 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301697 portdev->config.max_nr_ports = 1;
Sasha Levin51c6d612011-08-14 17:52:31 +03001698 if (virtio_config_val(vdev, VIRTIO_CONSOLE_F_MULTIPORT,
1699 offsetof(struct virtio_console_config,
1700 max_nr_ports),
1701 &portdev->config.max_nr_ports) == 0)
Amit Shah17634ba2009-12-21 21:03:25 +05301702 multiport = true;
Amit Shah17634ba2009-12-21 21:03:25 +05301703
Amit Shah2658a792010-01-18 19:15:11 +05301704 err = init_vqs(portdev);
1705 if (err < 0) {
1706 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301707 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301708 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301709
Amit Shah17634ba2009-12-21 21:03:25 +05301710 spin_lock_init(&portdev->ports_lock);
1711 INIT_LIST_HEAD(&portdev->ports);
1712
1713 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301714 unsigned int nr_added_bufs;
1715
Amit Shah17634ba2009-12-21 21:03:25 +05301716 spin_lock_init(&portdev->cvq_lock);
1717 INIT_WORK(&portdev->control_work, &control_work_handler);
1718
Amit Shah335a64a5c2010-02-24 10:37:44 +05301719 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1720 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301721 dev_err(&vdev->dev,
1722 "Error allocating buffers for control queue\n");
1723 err = -ENOMEM;
1724 goto free_vqs;
1725 }
Amit Shah1d051602010-05-19 22:15:49 -06001726 } else {
1727 /*
1728 * For backward compatibility: Create a console port
1729 * if we're running on older host.
1730 */
1731 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301732 }
1733
Amit Shah6bdf2af2010-09-02 18:11:49 +05301734 spin_lock_irq(&pdrvdata_lock);
1735 list_add_tail(&portdev->list, &pdrvdata.portdevs);
1736 spin_unlock_irq(&pdrvdata_lock);
1737
Amit Shahf909f852010-05-19 22:15:48 -06001738 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1739 VIRTIO_CONSOLE_DEVICE_READY, 1);
Rusty Russell31610432007-10-22 11:03:39 +10001740 return 0;
1741
Amit Shah22a29ea2010-02-12 10:32:17 +05301742free_vqs:
Julia Lawall0643e4c2010-05-15 11:45:53 +02001743 /* The host might want to notify mgmt sw about device add failure */
1744 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1745 VIRTIO_CONSOLE_DEVICE_READY, 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301746 vdev->config->del_vqs(vdev);
1747 kfree(portdev->in_vqs);
1748 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301749free_chrdev:
1750 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001751free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301752 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001753fail:
1754 return err;
1755}
1756
Amit Shah71778762010-02-12 10:32:16 +05301757static void virtcons_remove(struct virtio_device *vdev)
1758{
1759 struct ports_device *portdev;
1760 struct port *port, *port2;
Amit Shah71778762010-02-12 10:32:16 +05301761
1762 portdev = vdev->priv;
1763
Amit Shah6bdf2af2010-09-02 18:11:49 +05301764 spin_lock_irq(&pdrvdata_lock);
1765 list_del(&portdev->list);
1766 spin_unlock_irq(&pdrvdata_lock);
1767
Amit Shah02238952010-09-02 18:11:40 +05301768 /* Disable interrupts for vqs */
1769 vdev->config->reset(vdev);
1770 /* Finish up work that's lined up */
Amit Shah71778762010-02-12 10:32:16 +05301771 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301772
1773 list_for_each_entry_safe(port, port2, &portdev->ports, list)
Amit Shahb353a6b2010-09-02 18:38:29 +05301774 unplug_port(port);
Amit Shah71778762010-02-12 10:32:16 +05301775
1776 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1777
Amit Shahe0620132010-09-02 18:38:30 +05301778 /*
1779 * When yanking out a device, we immediately lose the
1780 * (device-side) queues. So there's no point in keeping the
1781 * guest side around till we drop our final reference. This
1782 * also means that any ports which are in an open state will
1783 * have to just stop using the port, as the vqs are going
1784 * away.
1785 */
Amit Shah96eb8722010-09-02 18:11:41 +05301786 if (use_multiport(portdev)) {
1787 struct port_buffer *buf;
1788 unsigned int len;
Amit Shah71778762010-02-12 10:32:16 +05301789
Amit Shah96eb8722010-09-02 18:11:41 +05301790 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1791 free_buf(buf);
1792
1793 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1794 free_buf(buf);
1795 }
Amit Shah71778762010-02-12 10:32:16 +05301796
1797 vdev->config->del_vqs(vdev);
1798 kfree(portdev->in_vqs);
1799 kfree(portdev->out_vqs);
1800
1801 kfree(portdev);
1802}
1803
Rusty Russell31610432007-10-22 11:03:39 +10001804static struct virtio_device_id id_table[] = {
1805 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1806 { 0 },
1807};
1808
Christian Borntraegerc2983452008-11-25 13:36:26 +01001809static unsigned int features[] = {
1810 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001811 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001812};
1813
Rusty Russell31610432007-10-22 11:03:39 +10001814static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001815 .feature_table = features,
1816 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001817 .driver.name = KBUILD_MODNAME,
1818 .driver.owner = THIS_MODULE,
1819 .id_table = id_table,
1820 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301821 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301822 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001823};
1824
1825static int __init init(void)
1826{
Amit Shahfb08bd22009-12-21 21:36:04 +05301827 int err;
1828
1829 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1830 if (IS_ERR(pdrvdata.class)) {
1831 err = PTR_ERR(pdrvdata.class);
1832 pr_err("Error %d creating virtio-ports class\n", err);
1833 return err;
1834 }
Amit Shahd99393e2009-12-21 22:36:21 +05301835
1836 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1837 if (!pdrvdata.debugfs_dir) {
1838 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1839 PTR_ERR(pdrvdata.debugfs_dir));
1840 }
Amit Shah38edf582010-01-18 19:15:05 +05301841 INIT_LIST_HEAD(&pdrvdata.consoles);
Amit Shah6bdf2af2010-09-02 18:11:49 +05301842 INIT_LIST_HEAD(&pdrvdata.portdevs);
Amit Shah38edf582010-01-18 19:15:05 +05301843
Rusty Russell31610432007-10-22 11:03:39 +10001844 return register_virtio_driver(&virtio_console);
1845}
Amit Shah71778762010-02-12 10:32:16 +05301846
1847static void __exit fini(void)
1848{
1849 unregister_virtio_driver(&virtio_console);
1850
1851 class_destroy(pdrvdata.class);
1852 if (pdrvdata.debugfs_dir)
1853 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1854}
Rusty Russell31610432007-10-22 11:03:39 +10001855module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301856module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001857
1858MODULE_DEVICE_TABLE(virtio, id_table);
1859MODULE_DESCRIPTION("Virtio console driver");
1860MODULE_LICENSE("GPL");