blob: 47b710ca4ab3320d1c4b7bea9fdb1af33df48984 [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Amit Shah17634ba2009-12-21 21:03:25 +05303 * Copyright (C) 2009, 2010 Red Hat, Inc.
Rusty Russell31610432007-10-22 11:03:39 +10004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
Amit Shahfb08bd22009-12-21 21:36:04 +053019#include <linux/cdev.h>
Amit Shahd99393e2009-12-21 22:36:21 +053020#include <linux/debugfs.h>
Amit Shahfb08bd22009-12-21 21:36:04 +053021#include <linux/device.h>
Rusty Russell31610432007-10-22 11:03:39 +100022#include <linux/err.h>
Amit Shah2030fa42009-12-21 21:49:30 +053023#include <linux/fs.h>
Rusty Russell31610432007-10-22 11:03:39 +100024#include <linux/init.h>
Amit Shah38edf582010-01-18 19:15:05 +053025#include <linux/list.h>
Amit Shah2030fa42009-12-21 21:49:30 +053026#include <linux/poll.h>
27#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Amit Shah38edf582010-01-18 19:15:05 +053029#include <linux/spinlock.h>
Rusty Russell31610432007-10-22 11:03:39 +100030#include <linux/virtio.h>
31#include <linux/virtio_console.h>
Amit Shah2030fa42009-12-21 21:49:30 +053032#include <linux/wait.h>
Amit Shah17634ba2009-12-21 21:03:25 +053033#include <linux/workqueue.h>
Rusty Russell31610432007-10-22 11:03:39 +100034#include "hvc_console.h"
35
Amit Shah38edf582010-01-18 19:15:05 +053036/*
37 * This is a global struct for storing common data for all the devices
38 * this driver handles.
39 *
40 * Mainly, it has a linked list for all the consoles in one place so
41 * that callbacks from hvc for get_chars(), put_chars() work properly
42 * across multiple devices and multiple ports per device.
43 */
44struct ports_driver_data {
Amit Shahfb08bd22009-12-21 21:36:04 +053045 /* Used for registering chardevs */
46 struct class *class;
47
Amit Shahd99393e2009-12-21 22:36:21 +053048 /* Used for exporting per-port information to debugfs */
49 struct dentry *debugfs_dir;
50
Amit Shahfb08bd22009-12-21 21:36:04 +053051 /* Number of devices this driver is handling */
52 unsigned int index;
53
Rusty Russelld8a02bd2010-01-18 19:15:06 +053054 /*
55 * This is used to keep track of the number of hvc consoles
56 * spawned by this driver. This number is given as the first
57 * argument to hvc_alloc(). To correctly map an initial
58 * console spawned via hvc_instantiate to the console being
59 * hooked up via hvc_alloc, we need to pass the same vtermno.
60 *
61 * We also just assume the first console being initialised was
62 * the first one that got used as the initial console.
63 */
64 unsigned int next_vtermno;
65
Amit Shah38edf582010-01-18 19:15:05 +053066 /* All the console devices handled by this driver */
67 struct list_head consoles;
68};
69static struct ports_driver_data pdrvdata;
70
71DEFINE_SPINLOCK(pdrvdata_lock);
72
Amit Shah4f23c572010-01-18 19:15:09 +053073/* This struct holds information that's relevant only for console ports */
74struct console {
75 /* We'll place all consoles in a list in the pdrvdata struct */
76 struct list_head list;
77
78 /* The hvc device associated with this console port */
79 struct hvc_struct *hvc;
80
Amit Shah97788292010-05-06 02:05:08 +053081 /* The size of the console */
82 struct winsize ws;
83
Amit Shah4f23c572010-01-18 19:15:09 +053084 /*
85 * This number identifies the number that we used to register
86 * with hvc in hvc_instantiate() and hvc_alloc(); this is the
87 * number passed on by the hvc callbacks to us to
88 * differentiate between the other console ports handled by
89 * this driver
90 */
91 u32 vtermno;
92};
93
Amit Shahfdb9a052010-01-18 19:15:01 +053094struct port_buffer {
95 char *buf;
96
97 /* size of the buffer in *buf above */
98 size_t size;
99
100 /* used length of the buffer */
101 size_t len;
102 /* offset in the buf from which to consume data */
103 size_t offset;
104};
105
Amit Shah17634ba2009-12-21 21:03:25 +0530106/*
107 * This is a per-device struct that stores data common to all the
108 * ports for that device (vdev->priv).
109 */
110struct ports_device {
111 /*
112 * Workqueue handlers where we process deferred work after
113 * notification
114 */
115 struct work_struct control_work;
116
117 struct list_head ports;
118
119 /* To protect the list of ports */
120 spinlock_t ports_lock;
121
122 /* To protect the vq operations for the control channel */
123 spinlock_t cvq_lock;
124
125 /* The current config space is stored here */
Amit Shahb99fa812010-05-19 22:15:46 -0600126 struct virtio_console_config config;
Amit Shah17634ba2009-12-21 21:03:25 +0530127
128 /* The virtio device we're associated with */
129 struct virtio_device *vdev;
130
131 /*
132 * A couple of virtqueues for the control channel: one for
133 * guest->host transfers, one for host->guest transfers
134 */
135 struct virtqueue *c_ivq, *c_ovq;
136
137 /* Array of per-port IO virtqueues */
138 struct virtqueue **in_vqs, **out_vqs;
Amit Shahfb08bd22009-12-21 21:36:04 +0530139
140 /* Used for numbering devices for sysfs and debugfs */
141 unsigned int drv_index;
142
143 /* Major number for this device. Ports will be created as minors. */
144 int chr_major;
Amit Shah17634ba2009-12-21 21:03:25 +0530145};
146
Amit Shah1c85bf32010-01-18 19:15:07 +0530147/* This struct holds the per-port data */
Rusty Russell21206ed2010-01-18 19:15:00 +0530148struct port {
Amit Shah17634ba2009-12-21 21:03:25 +0530149 /* Next port in the list, head is in the ports_device */
150 struct list_head list;
151
Amit Shah1c85bf32010-01-18 19:15:07 +0530152 /* Pointer to the parent virtio_console device */
153 struct ports_device *portdev;
Amit Shahfdb9a052010-01-18 19:15:01 +0530154
155 /* The current buffer from which data has to be fed to readers */
156 struct port_buffer *inbuf;
Rusty Russell31610432007-10-22 11:03:39 +1000157
Amit Shah203baab2010-01-18 19:15:12 +0530158 /*
159 * To protect the operations on the in_vq associated with this
160 * port. Has to be a spinlock because it can be called from
161 * interrupt context (get_char()).
162 */
163 spinlock_t inbuf_lock;
164
Amit Shahcdfadfc2010-05-19 22:15:50 -0600165 /* Protect the operations on the out_vq. */
166 spinlock_t outvq_lock;
167
Amit Shah1c85bf32010-01-18 19:15:07 +0530168 /* The IO vqs for this port */
169 struct virtqueue *in_vq, *out_vq;
170
Amit Shahd99393e2009-12-21 22:36:21 +0530171 /* File in the debugfs directory that exposes this port's information */
172 struct dentry *debugfs_file;
173
Amit Shah4f23c572010-01-18 19:15:09 +0530174 /*
175 * The entries in this struct will be valid if this port is
176 * hooked up to an hvc console
177 */
178 struct console cons;
Amit Shah17634ba2009-12-21 21:03:25 +0530179
Amit Shahfb08bd22009-12-21 21:36:04 +0530180 /* Each port associates with a separate char device */
181 struct cdev cdev;
182 struct device *dev;
183
Amit Shah2030fa42009-12-21 21:49:30 +0530184 /* A waitqueue for poll() or blocking read operations */
185 wait_queue_head_t waitqueue;
186
Amit Shah431edb82009-12-21 21:57:40 +0530187 /* The 'name' of the port that we expose via sysfs properties */
188 char *name;
189
Amit Shah17634ba2009-12-21 21:03:25 +0530190 /* The 'id' to identify the port with the Host */
191 u32 id;
Amit Shah2030fa42009-12-21 21:49:30 +0530192
Amit Shahcdfadfc2010-05-19 22:15:50 -0600193 bool outvq_full;
194
Amit Shah2030fa42009-12-21 21:49:30 +0530195 /* Is the host device open */
196 bool host_connected;
Amit Shah3c7969c2009-11-26 11:25:38 +0530197
198 /* We should allow only one process to open a port */
199 bool guest_connected;
Rusty Russell21206ed2010-01-18 19:15:00 +0530200};
Rusty Russell31610432007-10-22 11:03:39 +1000201
Rusty Russell971f3392010-01-18 19:14:56 +0530202/* This is the very early arch-specified put chars function. */
203static int (*early_put_chars)(u32, const char *, int);
204
Amit Shah38edf582010-01-18 19:15:05 +0530205static struct port *find_port_by_vtermno(u32 vtermno)
206{
207 struct port *port;
Amit Shah4f23c572010-01-18 19:15:09 +0530208 struct console *cons;
Amit Shah38edf582010-01-18 19:15:05 +0530209 unsigned long flags;
210
211 spin_lock_irqsave(&pdrvdata_lock, flags);
Amit Shah4f23c572010-01-18 19:15:09 +0530212 list_for_each_entry(cons, &pdrvdata.consoles, list) {
213 if (cons->vtermno == vtermno) {
214 port = container_of(cons, struct port, cons);
Amit Shah38edf582010-01-18 19:15:05 +0530215 goto out;
Amit Shah4f23c572010-01-18 19:15:09 +0530216 }
Amit Shah38edf582010-01-18 19:15:05 +0530217 }
218 port = NULL;
219out:
220 spin_unlock_irqrestore(&pdrvdata_lock, flags);
221 return port;
222}
223
Amit Shah17634ba2009-12-21 21:03:25 +0530224static struct port *find_port_by_id(struct ports_device *portdev, u32 id)
225{
226 struct port *port;
227 unsigned long flags;
228
229 spin_lock_irqsave(&portdev->ports_lock, flags);
230 list_for_each_entry(port, &portdev->ports, list)
231 if (port->id == id)
232 goto out;
233 port = NULL;
234out:
235 spin_unlock_irqrestore(&portdev->ports_lock, flags);
236
237 return port;
238}
239
Amit Shah203baab2010-01-18 19:15:12 +0530240static struct port *find_port_by_vq(struct ports_device *portdev,
241 struct virtqueue *vq)
242{
243 struct port *port;
Amit Shah203baab2010-01-18 19:15:12 +0530244 unsigned long flags;
245
Amit Shah17634ba2009-12-21 21:03:25 +0530246 spin_lock_irqsave(&portdev->ports_lock, flags);
247 list_for_each_entry(port, &portdev->ports, list)
Amit Shah203baab2010-01-18 19:15:12 +0530248 if (port->in_vq == vq || port->out_vq == vq)
249 goto out;
Amit Shah203baab2010-01-18 19:15:12 +0530250 port = NULL;
251out:
Amit Shah17634ba2009-12-21 21:03:25 +0530252 spin_unlock_irqrestore(&portdev->ports_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530253 return port;
254}
255
Amit Shah17634ba2009-12-21 21:03:25 +0530256static bool is_console_port(struct port *port)
257{
258 if (port->cons.hvc)
259 return true;
260 return false;
261}
262
263static inline bool use_multiport(struct ports_device *portdev)
264{
265 /*
266 * This condition can be true when put_chars is called from
267 * early_init
268 */
269 if (!portdev->vdev)
270 return 0;
271 return portdev->vdev->features[0] & (1 << VIRTIO_CONSOLE_F_MULTIPORT);
272}
273
Amit Shahfdb9a052010-01-18 19:15:01 +0530274static void free_buf(struct port_buffer *buf)
275{
276 kfree(buf->buf);
277 kfree(buf);
278}
279
280static struct port_buffer *alloc_buf(size_t buf_size)
281{
282 struct port_buffer *buf;
283
284 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
285 if (!buf)
286 goto fail;
287 buf->buf = kzalloc(buf_size, GFP_KERNEL);
288 if (!buf->buf)
289 goto free_buf;
290 buf->len = 0;
291 buf->offset = 0;
292 buf->size = buf_size;
293 return buf;
294
295free_buf:
296 kfree(buf);
297fail:
298 return NULL;
299}
300
Amit Shaha3cde442010-01-18 19:15:03 +0530301/* Callers should take appropriate locks */
302static void *get_inbuf(struct port *port)
303{
304 struct port_buffer *buf;
305 struct virtqueue *vq;
306 unsigned int len;
307
308 vq = port->in_vq;
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300309 buf = virtqueue_get_buf(vq, &len);
Amit Shaha3cde442010-01-18 19:15:03 +0530310 if (buf) {
311 buf->len = len;
312 buf->offset = 0;
313 }
314 return buf;
315}
316
Rusty Russella23ea922010-01-18 19:14:55 +0530317/*
Amit Shahe27b5192010-01-18 19:15:02 +0530318 * Create a scatter-gather list representing our input buffer and put
319 * it in the queue.
320 *
321 * Callers should take appropriate locks.
322 */
Amit Shah203baab2010-01-18 19:15:12 +0530323static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
Amit Shahe27b5192010-01-18 19:15:02 +0530324{
325 struct scatterlist sg[1];
Amit Shah203baab2010-01-18 19:15:12 +0530326 int ret;
Amit Shah1c85bf32010-01-18 19:15:07 +0530327
Amit Shahe27b5192010-01-18 19:15:02 +0530328 sg_init_one(sg, buf->buf, buf->size);
329
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300330 ret = virtqueue_add_buf(vq, sg, 0, 1, buf);
331 virtqueue_kick(vq);
Amit Shah203baab2010-01-18 19:15:12 +0530332 return ret;
333}
334
Amit Shah88f251a2009-12-21 22:15:30 +0530335/* Discard any unread data this port has. Callers lockers. */
336static void discard_port_data(struct port *port)
337{
338 struct port_buffer *buf;
339 struct virtqueue *vq;
340 unsigned int len;
Amit Shahd6933562010-02-12 10:32:18 +0530341 int ret;
Amit Shah88f251a2009-12-21 22:15:30 +0530342
343 vq = port->in_vq;
344 if (port->inbuf)
345 buf = port->inbuf;
346 else
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300347 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530348
Amit Shahd6933562010-02-12 10:32:18 +0530349 ret = 0;
350 while (buf) {
351 if (add_inbuf(vq, buf) < 0) {
352 ret++;
353 free_buf(buf);
354 }
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300355 buf = virtqueue_get_buf(vq, &len);
Amit Shah88f251a2009-12-21 22:15:30 +0530356 }
Amit Shah88f251a2009-12-21 22:15:30 +0530357 port->inbuf = NULL;
Amit Shahd6933562010-02-12 10:32:18 +0530358 if (ret)
359 dev_warn(port->dev, "Errors adding %d buffers back to vq\n",
360 ret);
Amit Shah88f251a2009-12-21 22:15:30 +0530361}
362
Amit Shah203baab2010-01-18 19:15:12 +0530363static bool port_has_data(struct port *port)
364{
365 unsigned long flags;
366 bool ret;
367
Amit Shah203baab2010-01-18 19:15:12 +0530368 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +0530369 if (port->inbuf) {
Amit Shah203baab2010-01-18 19:15:12 +0530370 ret = true;
Amit Shahd6933562010-02-12 10:32:18 +0530371 goto out;
372 }
373 port->inbuf = get_inbuf(port);
374 if (port->inbuf) {
375 ret = true;
376 goto out;
377 }
378 ret = false;
379out:
Amit Shah203baab2010-01-18 19:15:12 +0530380 spin_unlock_irqrestore(&port->inbuf_lock, flags);
Amit Shah203baab2010-01-18 19:15:12 +0530381 return ret;
382}
383
Amit Shah3425e702010-05-19 22:15:46 -0600384static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
385 unsigned int event, unsigned int value)
Amit Shah17634ba2009-12-21 21:03:25 +0530386{
387 struct scatterlist sg[1];
388 struct virtio_console_control cpkt;
389 struct virtqueue *vq;
Amit Shah604b2ad2010-02-24 10:36:51 +0530390 unsigned int len;
Amit Shah17634ba2009-12-21 21:03:25 +0530391
Amit Shah3425e702010-05-19 22:15:46 -0600392 if (!use_multiport(portdev))
Amit Shah17634ba2009-12-21 21:03:25 +0530393 return 0;
394
Amit Shah3425e702010-05-19 22:15:46 -0600395 cpkt.id = port_id;
Amit Shah17634ba2009-12-21 21:03:25 +0530396 cpkt.event = event;
397 cpkt.value = value;
398
Amit Shah3425e702010-05-19 22:15:46 -0600399 vq = portdev->c_ovq;
Amit Shah17634ba2009-12-21 21:03:25 +0530400
401 sg_init_one(sg, &cpkt, sizeof(cpkt));
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300402 if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt) >= 0) {
403 virtqueue_kick(vq);
404 while (!virtqueue_get_buf(vq, &len))
Amit Shah17634ba2009-12-21 21:03:25 +0530405 cpu_relax();
406 }
407 return 0;
408}
409
Amit Shah3425e702010-05-19 22:15:46 -0600410static ssize_t send_control_msg(struct port *port, unsigned int event,
411 unsigned int value)
412{
Amit Shah84ec06c2010-09-02 18:11:42 +0530413 /* Did the port get unplugged before userspace closed it? */
414 if (port->portdev)
415 return __send_control_msg(port->portdev, port->id, event, value);
416 return 0;
Amit Shah3425e702010-05-19 22:15:46 -0600417}
418
Amit Shahcdfadfc2010-05-19 22:15:50 -0600419/* Callers must take the port->outvq_lock */
420static void reclaim_consumed_buffers(struct port *port)
421{
422 void *buf;
423 unsigned int len;
424
425 while ((buf = virtqueue_get_buf(port->out_vq, &len))) {
426 kfree(buf);
427 port->outvq_full = false;
428 }
429}
430
431static ssize_t send_buf(struct port *port, void *in_buf, size_t in_count,
432 bool nonblock)
Amit Shahf997f00b2009-12-21 17:28:51 +0530433{
434 struct scatterlist sg[1];
435 struct virtqueue *out_vq;
436 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600437 unsigned long flags;
Amit Shahf997f00b2009-12-21 17:28:51 +0530438 unsigned int len;
439
440 out_vq = port->out_vq;
441
Amit Shahcdfadfc2010-05-19 22:15:50 -0600442 spin_lock_irqsave(&port->outvq_lock, flags);
443
444 reclaim_consumed_buffers(port);
445
Amit Shahf997f00b2009-12-21 17:28:51 +0530446 sg_init_one(sg, in_buf, in_count);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300447 ret = virtqueue_add_buf(out_vq, sg, 1, 0, in_buf);
Amit Shahf997f00b2009-12-21 17:28:51 +0530448
449 /* Tell Host to go! */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300450 virtqueue_kick(out_vq);
Amit Shahf997f00b2009-12-21 17:28:51 +0530451
452 if (ret < 0) {
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600453 in_count = 0;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600454 goto done;
Amit Shahf997f00b2009-12-21 17:28:51 +0530455 }
456
Amit Shahcdfadfc2010-05-19 22:15:50 -0600457 if (ret == 0)
458 port->outvq_full = true;
459
460 if (nonblock)
461 goto done;
462
463 /*
464 * Wait till the host acknowledges it pushed out the data we
Amit Shah531295e2010-10-20 13:45:43 +1030465 * sent. This is done for data from the hvc_console; the tty
466 * operations are performed with spinlocks held so we can't
467 * sleep here. An alternative would be to copy the data to a
468 * buffer and relax the spinning requirement. The downside is
469 * we need to kmalloc a GFP_ATOMIC buffer each time the
470 * console driver writes something out.
Amit Shahcdfadfc2010-05-19 22:15:50 -0600471 */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +0300472 while (!virtqueue_get_buf(out_vq, &len))
Amit Shahf997f00b2009-12-21 17:28:51 +0530473 cpu_relax();
Amit Shahcdfadfc2010-05-19 22:15:50 -0600474done:
475 spin_unlock_irqrestore(&port->outvq_lock, flags);
476 /*
477 * We're expected to return the amount of data we wrote -- all
478 * of it
479 */
Rusty Russell9ff4cfa2010-04-08 09:46:16 -0600480 return in_count;
Amit Shahf997f00b2009-12-21 17:28:51 +0530481}
482
Amit Shah203baab2010-01-18 19:15:12 +0530483/*
484 * Give out the data that's requested from the buffer that we have
485 * queued up.
486 */
Amit Shahb766cee2009-12-21 21:26:45 +0530487static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
488 bool to_user)
Amit Shah203baab2010-01-18 19:15:12 +0530489{
490 struct port_buffer *buf;
491 unsigned long flags;
492
493 if (!out_count || !port_has_data(port))
494 return 0;
495
496 buf = port->inbuf;
Amit Shahb766cee2009-12-21 21:26:45 +0530497 out_count = min(out_count, buf->len - buf->offset);
Amit Shah203baab2010-01-18 19:15:12 +0530498
Amit Shahb766cee2009-12-21 21:26:45 +0530499 if (to_user) {
500 ssize_t ret;
Amit Shah203baab2010-01-18 19:15:12 +0530501
Amit Shahb766cee2009-12-21 21:26:45 +0530502 ret = copy_to_user(out_buf, buf->buf + buf->offset, out_count);
503 if (ret)
504 return -EFAULT;
505 } else {
506 memcpy(out_buf, buf->buf + buf->offset, out_count);
507 }
508
Amit Shah203baab2010-01-18 19:15:12 +0530509 buf->offset += out_count;
510
511 if (buf->offset == buf->len) {
512 /*
513 * We're done using all the data in this buffer.
514 * Re-queue so that the Host can send us more data.
515 */
516 spin_lock_irqsave(&port->inbuf_lock, flags);
517 port->inbuf = NULL;
518
519 if (add_inbuf(port->in_vq, buf) < 0)
Amit Shahfb08bd22009-12-21 21:36:04 +0530520 dev_warn(port->dev, "failed add_buf\n");
Amit Shah203baab2010-01-18 19:15:12 +0530521
522 spin_unlock_irqrestore(&port->inbuf_lock, flags);
523 }
Amit Shahb766cee2009-12-21 21:26:45 +0530524 /* Return the number of bytes actually copied */
Amit Shah203baab2010-01-18 19:15:12 +0530525 return out_count;
Amit Shahe27b5192010-01-18 19:15:02 +0530526}
527
Amit Shah2030fa42009-12-21 21:49:30 +0530528/* The condition that must be true for polling to end */
Amit Shah60caacd2010-05-19 22:15:49 -0600529static bool will_read_block(struct port *port)
Amit Shah2030fa42009-12-21 21:49:30 +0530530{
Amit Shah3709ea72010-09-02 18:11:43 +0530531 if (!port->guest_connected) {
532 /* Port got hot-unplugged. Let's exit. */
533 return false;
534 }
Amit Shah60caacd2010-05-19 22:15:49 -0600535 return !port_has_data(port) && port->host_connected;
Amit Shah2030fa42009-12-21 21:49:30 +0530536}
537
Amit Shahcdfadfc2010-05-19 22:15:50 -0600538static bool will_write_block(struct port *port)
539{
540 bool ret;
541
Amit Shah60e5e0b2010-05-27 13:24:40 +0530542 if (!port->guest_connected) {
543 /* Port got hot-unplugged. Let's exit. */
544 return false;
545 }
Amit Shahcdfadfc2010-05-19 22:15:50 -0600546 if (!port->host_connected)
547 return true;
548
549 spin_lock_irq(&port->outvq_lock);
550 /*
551 * Check if the Host has consumed any buffers since we last
552 * sent data (this is only applicable for nonblocking ports).
553 */
554 reclaim_consumed_buffers(port);
555 ret = port->outvq_full;
556 spin_unlock_irq(&port->outvq_lock);
557
558 return ret;
559}
560
Amit Shah2030fa42009-12-21 21:49:30 +0530561static ssize_t port_fops_read(struct file *filp, char __user *ubuf,
562 size_t count, loff_t *offp)
563{
564 struct port *port;
565 ssize_t ret;
566
567 port = filp->private_data;
568
569 if (!port_has_data(port)) {
570 /*
571 * If nothing's connected on the host just return 0 in
572 * case of list_empty; this tells the userspace app
573 * that there's no connection
574 */
575 if (!port->host_connected)
576 return 0;
577 if (filp->f_flags & O_NONBLOCK)
578 return -EAGAIN;
579
580 ret = wait_event_interruptible(port->waitqueue,
Amit Shah60caacd2010-05-19 22:15:49 -0600581 !will_read_block(port));
Amit Shah2030fa42009-12-21 21:49:30 +0530582 if (ret < 0)
583 return ret;
584 }
585 /*
586 * We could've received a disconnection message while we were
587 * waiting for more data.
588 *
589 * This check is not clubbed in the if() statement above as we
590 * might receive some data as well as the host could get
591 * disconnected after we got woken up from our wait. So we
592 * really want to give off whatever data we have and only then
593 * check for host_connected.
594 */
595 if (!port_has_data(port) && !port->host_connected)
596 return 0;
597
598 return fill_readbuf(port, ubuf, count, true);
599}
600
601static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
602 size_t count, loff_t *offp)
603{
604 struct port *port;
605 char *buf;
606 ssize_t ret;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600607 bool nonblock;
Amit Shah2030fa42009-12-21 21:49:30 +0530608
Amit Shah65745422010-09-14 13:26:16 +0530609 /* Userspace could be out to fool us */
610 if (!count)
611 return 0;
612
Amit Shah2030fa42009-12-21 21:49:30 +0530613 port = filp->private_data;
614
Amit Shahcdfadfc2010-05-19 22:15:50 -0600615 nonblock = filp->f_flags & O_NONBLOCK;
616
617 if (will_write_block(port)) {
618 if (nonblock)
619 return -EAGAIN;
620
621 ret = wait_event_interruptible(port->waitqueue,
622 !will_write_block(port));
623 if (ret < 0)
624 return ret;
625 }
626
Amit Shah2030fa42009-12-21 21:49:30 +0530627 count = min((size_t)(32 * 1024), count);
628
629 buf = kmalloc(count, GFP_KERNEL);
630 if (!buf)
631 return -ENOMEM;
632
633 ret = copy_from_user(buf, ubuf, count);
634 if (ret) {
635 ret = -EFAULT;
636 goto free_buf;
637 }
638
Amit Shah531295e2010-10-20 13:45:43 +1030639 /*
640 * We now ask send_buf() to not spin for generic ports -- we
641 * can re-use the same code path that non-blocking file
642 * descriptors take for blocking file descriptors since the
643 * wait is already done and we're certain the write will go
644 * through to the host.
645 */
646 nonblock = true;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600647 ret = send_buf(port, buf, count, nonblock);
648
649 if (nonblock && ret > 0)
650 goto out;
651
Amit Shah2030fa42009-12-21 21:49:30 +0530652free_buf:
653 kfree(buf);
Amit Shahcdfadfc2010-05-19 22:15:50 -0600654out:
Amit Shah2030fa42009-12-21 21:49:30 +0530655 return ret;
656}
657
658static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
659{
660 struct port *port;
661 unsigned int ret;
662
663 port = filp->private_data;
664 poll_wait(filp, &port->waitqueue, wait);
665
Amit Shah8529a502010-09-02 18:11:44 +0530666 if (!port->guest_connected) {
667 /* Port got unplugged */
668 return POLLHUP;
669 }
Amit Shah2030fa42009-12-21 21:49:30 +0530670 ret = 0;
Hans de Goede6df7aad2010-09-16 14:43:08 +0530671 if (!will_read_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530672 ret |= POLLIN | POLLRDNORM;
Amit Shahcdfadfc2010-05-19 22:15:50 -0600673 if (!will_write_block(port))
Amit Shah2030fa42009-12-21 21:49:30 +0530674 ret |= POLLOUT;
675 if (!port->host_connected)
676 ret |= POLLHUP;
677
678 return ret;
679}
680
681static int port_fops_release(struct inode *inode, struct file *filp)
682{
683 struct port *port;
684
685 port = filp->private_data;
686
687 /* Notify host of port being closed */
688 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
689
Amit Shah88f251a2009-12-21 22:15:30 +0530690 spin_lock_irq(&port->inbuf_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530691 port->guest_connected = false;
692
Amit Shah88f251a2009-12-21 22:15:30 +0530693 discard_port_data(port);
694
695 spin_unlock_irq(&port->inbuf_lock);
696
Amit Shahcdfadfc2010-05-19 22:15:50 -0600697 spin_lock_irq(&port->outvq_lock);
698 reclaim_consumed_buffers(port);
699 spin_unlock_irq(&port->outvq_lock);
700
Amit Shah2030fa42009-12-21 21:49:30 +0530701 return 0;
702}
703
704static int port_fops_open(struct inode *inode, struct file *filp)
705{
706 struct cdev *cdev = inode->i_cdev;
707 struct port *port;
708
709 port = container_of(cdev, struct port, cdev);
710 filp->private_data = port;
711
712 /*
713 * Don't allow opening of console port devices -- that's done
714 * via /dev/hvc
715 */
716 if (is_console_port(port))
717 return -ENXIO;
718
Amit Shah3c7969c2009-11-26 11:25:38 +0530719 /* Allow only one process to open a particular port at a time */
720 spin_lock_irq(&port->inbuf_lock);
721 if (port->guest_connected) {
722 spin_unlock_irq(&port->inbuf_lock);
723 return -EMFILE;
724 }
725
726 port->guest_connected = true;
727 spin_unlock_irq(&port->inbuf_lock);
728
Amit Shahcdfadfc2010-05-19 22:15:50 -0600729 spin_lock_irq(&port->outvq_lock);
730 /*
731 * There might be a chance that we missed reclaiming a few
732 * buffers in the window of the port getting previously closed
733 * and opening now.
734 */
735 reclaim_consumed_buffers(port);
736 spin_unlock_irq(&port->outvq_lock);
737
Amit Shah2030fa42009-12-21 21:49:30 +0530738 /* Notify host of port being opened */
739 send_control_msg(filp->private_data, VIRTIO_CONSOLE_PORT_OPEN, 1);
740
741 return 0;
742}
743
744/*
745 * The file operations that we support: programs in the guest can open
746 * a console device, read from it, write to it, poll for data and
747 * close it. The devices are at
748 * /dev/vport<device number>p<port number>
749 */
750static const struct file_operations port_fops = {
751 .owner = THIS_MODULE,
752 .open = port_fops_open,
753 .read = port_fops_read,
754 .write = port_fops_write,
755 .poll = port_fops_poll,
756 .release = port_fops_release,
757};
758
Amit Shahe27b5192010-01-18 19:15:02 +0530759/*
Rusty Russella23ea922010-01-18 19:14:55 +0530760 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +1000761 *
Rusty Russella23ea922010-01-18 19:14:55 +0530762 * We turn the characters into a scatter-gather list, add it to the
763 * output queue and then kick the Host. Then we sit here waiting for
764 * it to finish: inefficient in theory, but in practice
765 * implementations will do it immediately (lguest's Launcher does).
766 */
Rusty Russell31610432007-10-22 11:03:39 +1000767static int put_chars(u32 vtermno, const char *buf, int count)
768{
Rusty Russell21206ed2010-01-18 19:15:00 +0530769 struct port *port;
Amit Shah38edf582010-01-18 19:15:05 +0530770
François Diakhaté162a6892010-03-23 18:23:15 +0530771 if (unlikely(early_put_chars))
772 return early_put_chars(vtermno, buf, count);
773
Amit Shah38edf582010-01-18 19:15:05 +0530774 port = find_port_by_vtermno(vtermno);
775 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600776 return -EPIPE;
Rusty Russell31610432007-10-22 11:03:39 +1000777
Amit Shahcdfadfc2010-05-19 22:15:50 -0600778 return send_buf(port, (void *)buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000779}
780
Rusty Russella23ea922010-01-18 19:14:55 +0530781/*
Rusty Russella23ea922010-01-18 19:14:55 +0530782 * get_chars() is the callback from the hvc_console infrastructure
783 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +1000784 *
Amit Shah203baab2010-01-18 19:15:12 +0530785 * We call out to fill_readbuf that gets us the required data from the
786 * buffers that are queued up.
Rusty Russella23ea922010-01-18 19:14:55 +0530787 */
Rusty Russell31610432007-10-22 11:03:39 +1000788static int get_chars(u32 vtermno, char *buf, int count)
789{
Rusty Russell21206ed2010-01-18 19:15:00 +0530790 struct port *port;
Rusty Russell31610432007-10-22 11:03:39 +1000791
Amit Shah6dc69f972010-05-19 22:15:47 -0600792 /* If we've not set up the port yet, we have no input to give. */
793 if (unlikely(early_put_chars))
794 return 0;
795
Amit Shah38edf582010-01-18 19:15:05 +0530796 port = find_port_by_vtermno(vtermno);
797 if (!port)
Amit Shah6dc69f972010-05-19 22:15:47 -0600798 return -EPIPE;
Rusty Russell21206ed2010-01-18 19:15:00 +0530799
800 /* If we don't have an input queue yet, we can't get input. */
801 BUG_ON(!port->in_vq);
802
Amit Shahb766cee2009-12-21 21:26:45 +0530803 return fill_readbuf(port, buf, count, false);
Rusty Russell31610432007-10-22 11:03:39 +1000804}
Rusty Russell31610432007-10-22 11:03:39 +1000805
Amit Shahcb06e362010-01-18 19:15:08 +0530806static void resize_console(struct port *port)
Christian Borntraegerc2983452008-11-25 13:36:26 +0100807{
Amit Shahcb06e362010-01-18 19:15:08 +0530808 struct virtio_device *vdev;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100809
Amit Shah2de16a42010-03-19 17:36:44 +0530810 /* The port could have been hot-unplugged */
Amit Shah97788292010-05-06 02:05:08 +0530811 if (!port || !is_console_port(port))
Amit Shah2de16a42010-03-19 17:36:44 +0530812 return;
813
Amit Shahcb06e362010-01-18 19:15:08 +0530814 vdev = port->portdev->vdev;
Amit Shah97788292010-05-06 02:05:08 +0530815 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE))
816 hvc_resize(port->cons.hvc, port->cons.ws);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100817}
818
Amit Shah38edf582010-01-18 19:15:05 +0530819/* We set the configuration at this point, since we now have a tty */
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200820static int notifier_add_vio(struct hvc_struct *hp, int data)
821{
Amit Shah38edf582010-01-18 19:15:05 +0530822 struct port *port;
823
824 port = find_port_by_vtermno(hp->vtermno);
825 if (!port)
826 return -EINVAL;
827
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200828 hp->irq_requested = 1;
Amit Shahcb06e362010-01-18 19:15:08 +0530829 resize_console(port);
Christian Borntraegerc2983452008-11-25 13:36:26 +0100830
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200831 return 0;
832}
833
834static void notifier_del_vio(struct hvc_struct *hp, int data)
835{
836 hp->irq_requested = 0;
837}
838
Amit Shah17634ba2009-12-21 21:03:25 +0530839/* The operations for console ports. */
Rusty Russell1dff3992009-11-28 12:20:26 +0530840static const struct hv_ops hv_ops = {
Rusty Russell971f3392010-01-18 19:14:56 +0530841 .get_chars = get_chars,
842 .put_chars = put_chars,
843 .notifier_add = notifier_add_vio,
844 .notifier_del = notifier_del_vio,
845 .notifier_hangup = notifier_del_vio,
846};
847
848/*
849 * Console drivers are initialized very early so boot messages can go
850 * out, so we do things slightly differently from the generic virtio
851 * initialization of the net and block drivers.
852 *
853 * At this stage, the console is output-only. It's too early to set
854 * up a virtqueue, so we let the drivers do some boutique early-output
855 * thing.
856 */
857int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
858{
859 early_put_chars = put_chars;
860 return hvc_instantiate(0, 0, &hv_ops);
861}
862
Amit Shah17634ba2009-12-21 21:03:25 +0530863int init_port_console(struct port *port)
Amit Shahcfa6d372010-01-18 19:15:10 +0530864{
865 int ret;
866
867 /*
868 * The Host's telling us this port is a console port. Hook it
869 * up with an hvc console.
870 *
871 * To set up and manage our virtual console, we call
872 * hvc_alloc().
873 *
874 * The first argument of hvc_alloc() is the virtual console
875 * number. The second argument is the parameter for the
876 * notification mechanism (like irq number). We currently
877 * leave this as zero, virtqueues have implicit notifications.
878 *
879 * The third argument is a "struct hv_ops" containing the
880 * put_chars() get_chars(), notifier_add() and notifier_del()
881 * pointers. The final argument is the output buffer size: we
882 * can do any size, so we put PAGE_SIZE here.
883 */
884 port->cons.vtermno = pdrvdata.next_vtermno;
885
886 port->cons.hvc = hvc_alloc(port->cons.vtermno, 0, &hv_ops, PAGE_SIZE);
887 if (IS_ERR(port->cons.hvc)) {
888 ret = PTR_ERR(port->cons.hvc);
Amit Shah298add72010-01-18 16:35:23 +0530889 dev_err(port->dev,
890 "error %d allocating hvc for port\n", ret);
Amit Shahcfa6d372010-01-18 19:15:10 +0530891 port->cons.hvc = NULL;
892 return ret;
893 }
894 spin_lock_irq(&pdrvdata_lock);
895 pdrvdata.next_vtermno++;
896 list_add_tail(&port->cons.list, &pdrvdata.consoles);
897 spin_unlock_irq(&pdrvdata_lock);
Amit Shah3c7969c2009-11-26 11:25:38 +0530898 port->guest_connected = true;
Amit Shahcfa6d372010-01-18 19:15:10 +0530899
Amit Shah1d051602010-05-19 22:15:49 -0600900 /*
901 * Start using the new console output if this is the first
902 * console to come up.
903 */
904 if (early_put_chars)
905 early_put_chars = NULL;
906
Amit Shah2030fa42009-12-21 21:49:30 +0530907 /* Notify host of port being opened */
908 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 1);
909
Amit Shahcfa6d372010-01-18 19:15:10 +0530910 return 0;
911}
912
Amit Shah431edb82009-12-21 21:57:40 +0530913static ssize_t show_port_name(struct device *dev,
914 struct device_attribute *attr, char *buffer)
915{
916 struct port *port;
917
918 port = dev_get_drvdata(dev);
919
920 return sprintf(buffer, "%s\n", port->name);
921}
922
923static DEVICE_ATTR(name, S_IRUGO, show_port_name, NULL);
924
925static struct attribute *port_sysfs_entries[] = {
926 &dev_attr_name.attr,
927 NULL
928};
929
930static struct attribute_group port_attribute_group = {
931 .name = NULL, /* put in device directory */
932 .attrs = port_sysfs_entries,
933};
934
Amit Shahd99393e2009-12-21 22:36:21 +0530935static int debugfs_open(struct inode *inode, struct file *filp)
936{
937 filp->private_data = inode->i_private;
938 return 0;
939}
940
941static ssize_t debugfs_read(struct file *filp, char __user *ubuf,
942 size_t count, loff_t *offp)
943{
944 struct port *port;
945 char *buf;
946 ssize_t ret, out_offset, out_count;
947
948 out_count = 1024;
949 buf = kmalloc(out_count, GFP_KERNEL);
950 if (!buf)
951 return -ENOMEM;
952
953 port = filp->private_data;
954 out_offset = 0;
955 out_offset += snprintf(buf + out_offset, out_count,
956 "name: %s\n", port->name ? port->name : "");
957 out_offset += snprintf(buf + out_offset, out_count - out_offset,
958 "guest_connected: %d\n", port->guest_connected);
959 out_offset += snprintf(buf + out_offset, out_count - out_offset,
960 "host_connected: %d\n", port->host_connected);
961 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahcdfadfc2010-05-19 22:15:50 -0600962 "outvq_full: %d\n", port->outvq_full);
963 out_offset += snprintf(buf + out_offset, out_count - out_offset,
Amit Shahd99393e2009-12-21 22:36:21 +0530964 "is_console: %s\n",
965 is_console_port(port) ? "yes" : "no");
966 out_offset += snprintf(buf + out_offset, out_count - out_offset,
967 "console_vtermno: %u\n", port->cons.vtermno);
968
969 ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
970 kfree(buf);
971 return ret;
972}
973
974static const struct file_operations port_debugfs_ops = {
975 .owner = THIS_MODULE,
976 .open = debugfs_open,
977 .read = debugfs_read,
978};
979
Amit Shah97788292010-05-06 02:05:08 +0530980static void set_console_size(struct port *port, u16 rows, u16 cols)
981{
982 if (!port || !is_console_port(port))
983 return;
984
985 port->cons.ws.ws_row = rows;
986 port->cons.ws.ws_col = cols;
987}
988
Amit Shahc446f8f2010-05-19 22:15:48 -0600989static unsigned int fill_queue(struct virtqueue *vq, spinlock_t *lock)
990{
991 struct port_buffer *buf;
992 unsigned int nr_added_bufs;
993 int ret;
994
995 nr_added_bufs = 0;
996 do {
997 buf = alloc_buf(PAGE_SIZE);
998 if (!buf)
999 break;
1000
1001 spin_lock_irq(lock);
1002 ret = add_inbuf(vq, buf);
1003 if (ret < 0) {
1004 spin_unlock_irq(lock);
1005 free_buf(buf);
1006 break;
1007 }
1008 nr_added_bufs++;
1009 spin_unlock_irq(lock);
1010 } while (ret > 0);
1011
1012 return nr_added_bufs;
1013}
1014
1015static int add_port(struct ports_device *portdev, u32 id)
1016{
1017 char debugfs_name[16];
1018 struct port *port;
1019 struct port_buffer *buf;
1020 dev_t devt;
1021 unsigned int nr_added_bufs;
1022 int err;
1023
1024 port = kmalloc(sizeof(*port), GFP_KERNEL);
1025 if (!port) {
1026 err = -ENOMEM;
1027 goto fail;
1028 }
1029
1030 port->portdev = portdev;
1031 port->id = id;
1032
1033 port->name = NULL;
1034 port->inbuf = NULL;
1035 port->cons.hvc = NULL;
1036
Amit Shah97788292010-05-06 02:05:08 +05301037 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
1038
Amit Shahc446f8f2010-05-19 22:15:48 -06001039 port->host_connected = port->guest_connected = false;
1040
Amit Shahcdfadfc2010-05-19 22:15:50 -06001041 port->outvq_full = false;
1042
Amit Shahc446f8f2010-05-19 22:15:48 -06001043 port->in_vq = portdev->in_vqs[port->id];
1044 port->out_vq = portdev->out_vqs[port->id];
1045
1046 cdev_init(&port->cdev, &port_fops);
1047
1048 devt = MKDEV(portdev->chr_major, id);
1049 err = cdev_add(&port->cdev, devt, 1);
1050 if (err < 0) {
1051 dev_err(&port->portdev->vdev->dev,
1052 "Error %d adding cdev for port %u\n", err, id);
1053 goto free_port;
1054 }
1055 port->dev = device_create(pdrvdata.class, &port->portdev->vdev->dev,
1056 devt, port, "vport%up%u",
1057 port->portdev->drv_index, id);
1058 if (IS_ERR(port->dev)) {
1059 err = PTR_ERR(port->dev);
1060 dev_err(&port->portdev->vdev->dev,
1061 "Error %d creating device for port %u\n",
1062 err, id);
1063 goto free_cdev;
1064 }
1065
1066 spin_lock_init(&port->inbuf_lock);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001067 spin_lock_init(&port->outvq_lock);
Amit Shahc446f8f2010-05-19 22:15:48 -06001068 init_waitqueue_head(&port->waitqueue);
1069
1070 /* Fill the in_vq with buffers so the host can send us data. */
1071 nr_added_bufs = fill_queue(port->in_vq, &port->inbuf_lock);
1072 if (!nr_added_bufs) {
1073 dev_err(port->dev, "Error allocating inbufs\n");
1074 err = -ENOMEM;
1075 goto free_device;
1076 }
1077
1078 /*
1079 * If we're not using multiport support, this has to be a console port
1080 */
1081 if (!use_multiport(port->portdev)) {
1082 err = init_port_console(port);
1083 if (err)
1084 goto free_inbufs;
1085 }
1086
1087 spin_lock_irq(&portdev->ports_lock);
1088 list_add_tail(&port->list, &port->portdev->ports);
1089 spin_unlock_irq(&portdev->ports_lock);
1090
1091 /*
1092 * Tell the Host we're set so that it can send us various
1093 * configuration parameters for this port (eg, port name,
1094 * caching, whether this is a console port, etc.)
1095 */
1096 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1097
1098 if (pdrvdata.debugfs_dir) {
1099 /*
1100 * Finally, create the debugfs file that we can use to
1101 * inspect a port's state at any time
1102 */
1103 sprintf(debugfs_name, "vport%up%u",
1104 port->portdev->drv_index, id);
1105 port->debugfs_file = debugfs_create_file(debugfs_name, 0444,
1106 pdrvdata.debugfs_dir,
1107 port,
1108 &port_debugfs_ops);
1109 }
1110 return 0;
1111
1112free_inbufs:
1113 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
1114 free_buf(buf);
1115free_device:
1116 device_destroy(pdrvdata.class, port->dev->devt);
1117free_cdev:
1118 cdev_del(&port->cdev);
1119free_port:
1120 kfree(port);
1121fail:
1122 /* The host might want to notify management sw about port add failure */
Julia Lawall0643e4c2010-05-15 11:45:53 +02001123 __send_control_msg(portdev, id, VIRTIO_CONSOLE_PORT_READY, 0);
Amit Shahc446f8f2010-05-19 22:15:48 -06001124 return err;
1125}
1126
Amit Shah1f7aa422009-12-21 22:27:31 +05301127/* Remove all port-specific data. */
1128static int remove_port(struct port *port)
1129{
Amit Shaha9cdd482010-02-12 10:32:15 +05301130 struct port_buffer *buf;
1131
Amit Shah00476342010-05-27 13:24:39 +05301132 if (port->guest_connected) {
1133 port->guest_connected = false;
1134 port->host_connected = false;
1135 wake_up_interruptible(&port->waitqueue);
1136 send_control_msg(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
1137 }
1138
Amit Shah1f7aa422009-12-21 22:27:31 +05301139 spin_lock_irq(&port->portdev->ports_lock);
1140 list_del(&port->list);
1141 spin_unlock_irq(&port->portdev->ports_lock);
1142
1143 if (is_console_port(port)) {
1144 spin_lock_irq(&pdrvdata_lock);
1145 list_del(&port->cons.list);
1146 spin_unlock_irq(&pdrvdata_lock);
Amit Shah69eb9a92010-05-19 22:15:47 -06001147#if 0
1148 /*
1149 * hvc_remove() not called as removing one hvc port
1150 * results in other hvc ports getting frozen.
1151 *
1152 * Once this is resolved in hvc, this functionality
1153 * will be enabled. Till that is done, the -EPIPE
1154 * return from get_chars() above will help
1155 * hvc_console.c to clean up on ports we remove here.
1156 */
Amit Shah1f7aa422009-12-21 22:27:31 +05301157 hvc_remove(port->cons.hvc);
Amit Shah69eb9a92010-05-19 22:15:47 -06001158#endif
Amit Shah1f7aa422009-12-21 22:27:31 +05301159 }
Amit Shah1f7aa422009-12-21 22:27:31 +05301160 sysfs_remove_group(&port->dev->kobj, &port_attribute_group);
1161 device_destroy(pdrvdata.class, port->dev->devt);
1162 cdev_del(&port->cdev);
1163
Amit Shaha9cdd482010-02-12 10:32:15 +05301164 /* Remove unused data this port might have received. */
Amit Shah1f7aa422009-12-21 22:27:31 +05301165 discard_port_data(port);
Amit Shaha9cdd482010-02-12 10:32:15 +05301166
Amit Shahcdfadfc2010-05-19 22:15:50 -06001167 reclaim_consumed_buffers(port);
1168
Amit Shaha9cdd482010-02-12 10:32:15 +05301169 /* Remove buffers we queued up for the Host to send us data in. */
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001170 while ((buf = virtqueue_detach_unused_buf(port->in_vq)))
Amit Shaha9cdd482010-02-12 10:32:15 +05301171 free_buf(buf);
1172
Amit Shah1f7aa422009-12-21 22:27:31 +05301173 kfree(port->name);
1174
Amit Shahd99393e2009-12-21 22:36:21 +05301175 debugfs_remove(port->debugfs_file);
1176
Amit Shah1f7aa422009-12-21 22:27:31 +05301177 kfree(port);
1178 return 0;
1179}
1180
Amit Shah17634ba2009-12-21 21:03:25 +05301181/* Any private messages that the Host and Guest want to share */
1182static void handle_control_message(struct ports_device *portdev,
1183 struct port_buffer *buf)
1184{
1185 struct virtio_console_control *cpkt;
1186 struct port *port;
Amit Shah431edb82009-12-21 21:57:40 +05301187 size_t name_size;
1188 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301189
1190 cpkt = (struct virtio_console_control *)(buf->buf + buf->offset);
1191
1192 port = find_port_by_id(portdev, cpkt->id);
Amit Shahf909f852010-05-19 22:15:48 -06001193 if (!port && cpkt->event != VIRTIO_CONSOLE_PORT_ADD) {
Amit Shah17634ba2009-12-21 21:03:25 +05301194 /* No valid header at start of buffer. Drop it. */
1195 dev_dbg(&portdev->vdev->dev,
1196 "Invalid index %u in control packet\n", cpkt->id);
1197 return;
1198 }
1199
1200 switch (cpkt->event) {
Amit Shahf909f852010-05-19 22:15:48 -06001201 case VIRTIO_CONSOLE_PORT_ADD:
1202 if (port) {
Amit Shah1d051602010-05-19 22:15:49 -06001203 dev_dbg(&portdev->vdev->dev,
1204 "Port %u already added\n", port->id);
Amit Shahf909f852010-05-19 22:15:48 -06001205 send_control_msg(port, VIRTIO_CONSOLE_PORT_READY, 1);
1206 break;
1207 }
1208 if (cpkt->id >= portdev->config.max_nr_ports) {
1209 dev_warn(&portdev->vdev->dev,
1210 "Request for adding port with out-of-bound id %u, max. supported id: %u\n",
1211 cpkt->id, portdev->config.max_nr_ports - 1);
1212 break;
1213 }
1214 add_port(portdev, cpkt->id);
1215 break;
1216 case VIRTIO_CONSOLE_PORT_REMOVE:
1217 remove_port(port);
1218 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301219 case VIRTIO_CONSOLE_CONSOLE_PORT:
1220 if (!cpkt->value)
1221 break;
1222 if (is_console_port(port))
1223 break;
1224
1225 init_port_console(port);
1226 /*
1227 * Could remove the port here in case init fails - but
1228 * have to notify the host first.
1229 */
1230 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301231 case VIRTIO_CONSOLE_RESIZE: {
1232 struct {
1233 __u16 rows;
1234 __u16 cols;
1235 } size;
1236
Amit Shah17634ba2009-12-21 21:03:25 +05301237 if (!is_console_port(port))
1238 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301239
1240 memcpy(&size, buf->buf + buf->offset + sizeof(*cpkt),
1241 sizeof(size));
1242 set_console_size(port, size.rows, size.cols);
1243
Amit Shah17634ba2009-12-21 21:03:25 +05301244 port->cons.hvc->irq_requested = 1;
1245 resize_console(port);
1246 break;
Amit Shah8345adb2010-05-06 02:05:09 +05301247 }
Amit Shah2030fa42009-12-21 21:49:30 +05301248 case VIRTIO_CONSOLE_PORT_OPEN:
1249 port->host_connected = cpkt->value;
1250 wake_up_interruptible(&port->waitqueue);
Amit Shahcdfadfc2010-05-19 22:15:50 -06001251 /*
1252 * If the host port got closed and the host had any
1253 * unconsumed buffers, we'll be able to reclaim them
1254 * now.
1255 */
1256 spin_lock_irq(&port->outvq_lock);
1257 reclaim_consumed_buffers(port);
1258 spin_unlock_irq(&port->outvq_lock);
Amit Shah2030fa42009-12-21 21:49:30 +05301259 break;
Amit Shah431edb82009-12-21 21:57:40 +05301260 case VIRTIO_CONSOLE_PORT_NAME:
1261 /*
1262 * Skip the size of the header and the cpkt to get the size
1263 * of the name that was sent
1264 */
1265 name_size = buf->len - buf->offset - sizeof(*cpkt) + 1;
1266
1267 port->name = kmalloc(name_size, GFP_KERNEL);
1268 if (!port->name) {
1269 dev_err(port->dev,
1270 "Not enough space to store port name\n");
1271 break;
1272 }
1273 strncpy(port->name, buf->buf + buf->offset + sizeof(*cpkt),
1274 name_size - 1);
1275 port->name[name_size - 1] = 0;
1276
1277 /*
1278 * Since we only have one sysfs attribute, 'name',
1279 * create it only if we have a name for the port.
1280 */
1281 err = sysfs_create_group(&port->dev->kobj,
1282 &port_attribute_group);
Amit Shahec642132010-03-19 17:36:43 +05301283 if (err) {
Amit Shah431edb82009-12-21 21:57:40 +05301284 dev_err(port->dev,
1285 "Error %d creating sysfs device attributes\n",
1286 err);
Amit Shahec642132010-03-19 17:36:43 +05301287 } else {
1288 /*
1289 * Generate a udev event so that appropriate
1290 * symlinks can be created based on udev
1291 * rules.
1292 */
1293 kobject_uevent(&port->dev->kobj, KOBJ_CHANGE);
1294 }
Amit Shah431edb82009-12-21 21:57:40 +05301295 break;
Amit Shah17634ba2009-12-21 21:03:25 +05301296 }
1297}
1298
1299static void control_work_handler(struct work_struct *work)
1300{
1301 struct ports_device *portdev;
1302 struct virtqueue *vq;
1303 struct port_buffer *buf;
1304 unsigned int len;
1305
1306 portdev = container_of(work, struct ports_device, control_work);
1307 vq = portdev->c_ivq;
1308
1309 spin_lock(&portdev->cvq_lock);
Michael S. Tsirkin505b0452010-04-12 16:18:32 +03001310 while ((buf = virtqueue_get_buf(vq, &len))) {
Amit Shah17634ba2009-12-21 21:03:25 +05301311 spin_unlock(&portdev->cvq_lock);
1312
1313 buf->len = len;
1314 buf->offset = 0;
1315
1316 handle_control_message(portdev, buf);
1317
1318 spin_lock(&portdev->cvq_lock);
1319 if (add_inbuf(portdev->c_ivq, buf) < 0) {
1320 dev_warn(&portdev->vdev->dev,
1321 "Error adding buffer to queue\n");
1322 free_buf(buf);
1323 }
1324 }
1325 spin_unlock(&portdev->cvq_lock);
1326}
1327
1328static void in_intr(struct virtqueue *vq)
1329{
1330 struct port *port;
1331 unsigned long flags;
1332
1333 port = find_port_by_vq(vq->vdev->priv, vq);
1334 if (!port)
1335 return;
1336
1337 spin_lock_irqsave(&port->inbuf_lock, flags);
Amit Shahd6933562010-02-12 10:32:18 +05301338 if (!port->inbuf)
1339 port->inbuf = get_inbuf(port);
Amit Shah17634ba2009-12-21 21:03:25 +05301340
Amit Shah88f251a2009-12-21 22:15:30 +05301341 /*
1342 * Don't queue up data when port is closed. This condition
1343 * can be reached when a console port is not yet connected (no
1344 * tty is spawned) and the host sends out data to console
1345 * ports. For generic serial ports, the host won't
1346 * (shouldn't) send data till the guest is connected.
1347 */
1348 if (!port->guest_connected)
1349 discard_port_data(port);
1350
Amit Shah17634ba2009-12-21 21:03:25 +05301351 spin_unlock_irqrestore(&port->inbuf_lock, flags);
1352
Amit Shah2030fa42009-12-21 21:49:30 +05301353 wake_up_interruptible(&port->waitqueue);
1354
Amit Shah17634ba2009-12-21 21:03:25 +05301355 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1356 hvc_kick();
1357}
1358
1359static void control_intr(struct virtqueue *vq)
1360{
1361 struct ports_device *portdev;
1362
1363 portdev = vq->vdev->priv;
1364 schedule_work(&portdev->control_work);
1365}
1366
Amit Shah7f5d8102009-12-21 22:22:08 +05301367static void config_intr(struct virtio_device *vdev)
1368{
1369 struct ports_device *portdev;
1370
1371 portdev = vdev->priv;
Amit Shah99f905f2010-05-19 22:15:48 -06001372
Amit Shah4038f5b72010-05-06 02:05:07 +05301373 if (!use_multiport(portdev)) {
Amit Shah97788292010-05-06 02:05:08 +05301374 struct port *port;
1375 u16 rows, cols;
1376
1377 vdev->config->get(vdev,
1378 offsetof(struct virtio_console_config, cols),
1379 &cols, sizeof(u16));
1380 vdev->config->get(vdev,
1381 offsetof(struct virtio_console_config, rows),
1382 &rows, sizeof(u16));
1383
1384 port = find_port_by_id(portdev, 0);
1385 set_console_size(port, rows, cols);
1386
Amit Shah4038f5b72010-05-06 02:05:07 +05301387 /*
1388 * We'll use this way of resizing only for legacy
1389 * support. For newer userspace
1390 * (VIRTIO_CONSOLE_F_MULTPORT+), use control messages
1391 * to indicate console size changes so that it can be
1392 * done per-port.
1393 */
Amit Shah97788292010-05-06 02:05:08 +05301394 resize_console(port);
Amit Shah4038f5b72010-05-06 02:05:07 +05301395 }
Amit Shah7f5d8102009-12-21 22:22:08 +05301396}
1397
Amit Shah2658a792010-01-18 19:15:11 +05301398static int init_vqs(struct ports_device *portdev)
1399{
1400 vq_callback_t **io_callbacks;
1401 char **io_names;
1402 struct virtqueue **vqs;
Amit Shah17634ba2009-12-21 21:03:25 +05301403 u32 i, j, nr_ports, nr_queues;
Amit Shah2658a792010-01-18 19:15:11 +05301404 int err;
1405
Amit Shah17634ba2009-12-21 21:03:25 +05301406 nr_ports = portdev->config.max_nr_ports;
1407 nr_queues = use_multiport(portdev) ? (nr_ports + 1) * 2 : 2;
Amit Shah2658a792010-01-18 19:15:11 +05301408
1409 vqs = kmalloc(nr_queues * sizeof(struct virtqueue *), GFP_KERNEL);
1410 if (!vqs) {
1411 err = -ENOMEM;
1412 goto fail;
1413 }
1414 io_callbacks = kmalloc(nr_queues * sizeof(vq_callback_t *), GFP_KERNEL);
1415 if (!io_callbacks) {
1416 err = -ENOMEM;
1417 goto free_vqs;
1418 }
1419 io_names = kmalloc(nr_queues * sizeof(char *), GFP_KERNEL);
1420 if (!io_names) {
1421 err = -ENOMEM;
1422 goto free_callbacks;
1423 }
1424 portdev->in_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1425 GFP_KERNEL);
1426 if (!portdev->in_vqs) {
1427 err = -ENOMEM;
1428 goto free_names;
1429 }
1430 portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
1431 GFP_KERNEL);
1432 if (!portdev->out_vqs) {
1433 err = -ENOMEM;
1434 goto free_invqs;
1435 }
1436
Amit Shah17634ba2009-12-21 21:03:25 +05301437 /*
1438 * For backward compat (newer host but older guest), the host
1439 * spawns a console port first and also inits the vqs for port
1440 * 0 before others.
1441 */
1442 j = 0;
1443 io_callbacks[j] = in_intr;
1444 io_callbacks[j + 1] = NULL;
1445 io_names[j] = "input";
1446 io_names[j + 1] = "output";
1447 j += 2;
Amit Shah2658a792010-01-18 19:15:11 +05301448
Amit Shah17634ba2009-12-21 21:03:25 +05301449 if (use_multiport(portdev)) {
1450 io_callbacks[j] = control_intr;
1451 io_callbacks[j + 1] = NULL;
1452 io_names[j] = "control-i";
1453 io_names[j + 1] = "control-o";
1454
1455 for (i = 1; i < nr_ports; i++) {
1456 j += 2;
1457 io_callbacks[j] = in_intr;
1458 io_callbacks[j + 1] = NULL;
1459 io_names[j] = "input";
1460 io_names[j + 1] = "output";
1461 }
1462 }
Amit Shah2658a792010-01-18 19:15:11 +05301463 /* Find the queues. */
1464 err = portdev->vdev->config->find_vqs(portdev->vdev, nr_queues, vqs,
1465 io_callbacks,
1466 (const char **)io_names);
1467 if (err)
1468 goto free_outvqs;
1469
Amit Shah17634ba2009-12-21 21:03:25 +05301470 j = 0;
Amit Shah2658a792010-01-18 19:15:11 +05301471 portdev->in_vqs[0] = vqs[0];
1472 portdev->out_vqs[0] = vqs[1];
Amit Shah17634ba2009-12-21 21:03:25 +05301473 j += 2;
1474 if (use_multiport(portdev)) {
1475 portdev->c_ivq = vqs[j];
1476 portdev->c_ovq = vqs[j + 1];
Amit Shah2658a792010-01-18 19:15:11 +05301477
Amit Shah17634ba2009-12-21 21:03:25 +05301478 for (i = 1; i < nr_ports; i++) {
1479 j += 2;
1480 portdev->in_vqs[i] = vqs[j];
1481 portdev->out_vqs[i] = vqs[j + 1];
1482 }
1483 }
Amit Shah2658a792010-01-18 19:15:11 +05301484 kfree(io_callbacks);
1485 kfree(io_names);
1486 kfree(vqs);
1487
1488 return 0;
1489
1490free_names:
1491 kfree(io_names);
1492free_callbacks:
1493 kfree(io_callbacks);
1494free_outvqs:
1495 kfree(portdev->out_vqs);
1496free_invqs:
1497 kfree(portdev->in_vqs);
1498free_vqs:
1499 kfree(vqs);
1500fail:
1501 return err;
1502}
1503
Amit Shahfb08bd22009-12-21 21:36:04 +05301504static const struct file_operations portdev_fops = {
1505 .owner = THIS_MODULE,
1506};
1507
Amit Shah1c85bf32010-01-18 19:15:07 +05301508/*
1509 * Once we're further in boot, we get probed like any other virtio
1510 * device.
Amit Shah17634ba2009-12-21 21:03:25 +05301511 *
1512 * If the host also supports multiple console ports, we check the
1513 * config space to see how many ports the host has spawned. We
1514 * initialize each port found.
Amit Shah1c85bf32010-01-18 19:15:07 +05301515 */
1516static int __devinit virtcons_probe(struct virtio_device *vdev)
1517{
Amit Shah1c85bf32010-01-18 19:15:07 +05301518 struct ports_device *portdev;
1519 int err;
Amit Shah17634ba2009-12-21 21:03:25 +05301520 bool multiport;
Amit Shah1c85bf32010-01-18 19:15:07 +05301521
1522 portdev = kmalloc(sizeof(*portdev), GFP_KERNEL);
1523 if (!portdev) {
1524 err = -ENOMEM;
1525 goto fail;
1526 }
1527
1528 /* Attach this portdev to this virtio_device, and vice-versa. */
1529 portdev->vdev = vdev;
1530 vdev->priv = portdev;
1531
Amit Shahfb08bd22009-12-21 21:36:04 +05301532 spin_lock_irq(&pdrvdata_lock);
1533 portdev->drv_index = pdrvdata.index++;
1534 spin_unlock_irq(&pdrvdata_lock);
1535
1536 portdev->chr_major = register_chrdev(0, "virtio-portsdev",
1537 &portdev_fops);
1538 if (portdev->chr_major < 0) {
1539 dev_err(&vdev->dev,
1540 "Error %d registering chrdev for device %u\n",
1541 portdev->chr_major, portdev->drv_index);
1542 err = portdev->chr_major;
1543 goto free;
1544 }
1545
Amit Shah17634ba2009-12-21 21:03:25 +05301546 multiport = false;
Amit Shah17634ba2009-12-21 21:03:25 +05301547 portdev->config.max_nr_ports = 1;
1548 if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_MULTIPORT)) {
1549 multiport = true;
1550 vdev->features[0] |= 1 << VIRTIO_CONSOLE_F_MULTIPORT;
1551
Amit Shahb99fa812010-05-19 22:15:46 -06001552 vdev->config->get(vdev, offsetof(struct virtio_console_config,
Amit Shahb99fa812010-05-19 22:15:46 -06001553 max_nr_ports),
Amit Shah17634ba2009-12-21 21:03:25 +05301554 &portdev->config.max_nr_ports,
1555 sizeof(portdev->config.max_nr_ports));
Amit Shah17634ba2009-12-21 21:03:25 +05301556 }
1557
1558 /* Let the Host know we support multiple ports.*/
1559 vdev->config->finalize_features(vdev);
1560
Amit Shah2658a792010-01-18 19:15:11 +05301561 err = init_vqs(portdev);
1562 if (err < 0) {
1563 dev_err(&vdev->dev, "Error %d initializing vqs\n", err);
Amit Shahfb08bd22009-12-21 21:36:04 +05301564 goto free_chrdev;
Amit Shah2658a792010-01-18 19:15:11 +05301565 }
Amit Shah1c85bf32010-01-18 19:15:07 +05301566
Amit Shah17634ba2009-12-21 21:03:25 +05301567 spin_lock_init(&portdev->ports_lock);
1568 INIT_LIST_HEAD(&portdev->ports);
1569
1570 if (multiport) {
Amit Shah335a64a5c2010-02-24 10:37:44 +05301571 unsigned int nr_added_bufs;
1572
Amit Shah17634ba2009-12-21 21:03:25 +05301573 spin_lock_init(&portdev->cvq_lock);
1574 INIT_WORK(&portdev->control_work, &control_work_handler);
1575
Amit Shah335a64a5c2010-02-24 10:37:44 +05301576 nr_added_bufs = fill_queue(portdev->c_ivq, &portdev->cvq_lock);
1577 if (!nr_added_bufs) {
Amit Shah22a29ea2010-02-12 10:32:17 +05301578 dev_err(&vdev->dev,
1579 "Error allocating buffers for control queue\n");
1580 err = -ENOMEM;
1581 goto free_vqs;
1582 }
Amit Shah1d051602010-05-19 22:15:49 -06001583 } else {
1584 /*
1585 * For backward compatibility: Create a console port
1586 * if we're running on older host.
1587 */
1588 add_port(portdev, 0);
Amit Shah17634ba2009-12-21 21:03:25 +05301589 }
1590
Amit Shahf909f852010-05-19 22:15:48 -06001591 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1592 VIRTIO_CONSOLE_DEVICE_READY, 1);
Rusty Russell31610432007-10-22 11:03:39 +10001593 return 0;
1594
Amit Shah22a29ea2010-02-12 10:32:17 +05301595free_vqs:
Julia Lawall0643e4c2010-05-15 11:45:53 +02001596 /* The host might want to notify mgmt sw about device add failure */
1597 __send_control_msg(portdev, VIRTIO_CONSOLE_BAD_ID,
1598 VIRTIO_CONSOLE_DEVICE_READY, 0);
Amit Shah22a29ea2010-02-12 10:32:17 +05301599 vdev->config->del_vqs(vdev);
1600 kfree(portdev->in_vqs);
1601 kfree(portdev->out_vqs);
Amit Shahfb08bd22009-12-21 21:36:04 +05301602free_chrdev:
1603 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
Rusty Russell31610432007-10-22 11:03:39 +10001604free:
Amit Shah1c85bf32010-01-18 19:15:07 +05301605 kfree(portdev);
Rusty Russell31610432007-10-22 11:03:39 +10001606fail:
1607 return err;
1608}
1609
Amit Shah71778762010-02-12 10:32:16 +05301610static void virtcons_remove(struct virtio_device *vdev)
1611{
1612 struct ports_device *portdev;
1613 struct port *port, *port2;
Amit Shah71778762010-02-12 10:32:16 +05301614
1615 portdev = vdev->priv;
1616
Amit Shah02238952010-09-02 18:11:40 +05301617 /* Disable interrupts for vqs */
1618 vdev->config->reset(vdev);
1619 /* Finish up work that's lined up */
Amit Shah71778762010-02-12 10:32:16 +05301620 cancel_work_sync(&portdev->control_work);
Amit Shah71778762010-02-12 10:32:16 +05301621
1622 list_for_each_entry_safe(port, port2, &portdev->ports, list)
1623 remove_port(port);
1624
1625 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1626
Amit Shah96eb8722010-09-02 18:11:41 +05301627 if (use_multiport(portdev)) {
1628 struct port_buffer *buf;
1629 unsigned int len;
Amit Shah71778762010-02-12 10:32:16 +05301630
Amit Shah96eb8722010-09-02 18:11:41 +05301631 while ((buf = virtqueue_get_buf(portdev->c_ivq, &len)))
1632 free_buf(buf);
1633
1634 while ((buf = virtqueue_detach_unused_buf(portdev->c_ivq)))
1635 free_buf(buf);
1636 }
Amit Shah71778762010-02-12 10:32:16 +05301637
1638 vdev->config->del_vqs(vdev);
1639 kfree(portdev->in_vqs);
1640 kfree(portdev->out_vqs);
1641
1642 kfree(portdev);
1643}
1644
Rusty Russell31610432007-10-22 11:03:39 +10001645static struct virtio_device_id id_table[] = {
1646 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
1647 { 0 },
1648};
1649
Christian Borntraegerc2983452008-11-25 13:36:26 +01001650static unsigned int features[] = {
1651 VIRTIO_CONSOLE_F_SIZE,
Amit Shahb99fa812010-05-19 22:15:46 -06001652 VIRTIO_CONSOLE_F_MULTIPORT,
Christian Borntraegerc2983452008-11-25 13:36:26 +01001653};
1654
Rusty Russell31610432007-10-22 11:03:39 +10001655static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +01001656 .feature_table = features,
1657 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +10001658 .driver.name = KBUILD_MODNAME,
1659 .driver.owner = THIS_MODULE,
1660 .id_table = id_table,
1661 .probe = virtcons_probe,
Amit Shah71778762010-02-12 10:32:16 +05301662 .remove = virtcons_remove,
Amit Shah7f5d8102009-12-21 22:22:08 +05301663 .config_changed = config_intr,
Rusty Russell31610432007-10-22 11:03:39 +10001664};
1665
1666static int __init init(void)
1667{
Amit Shahfb08bd22009-12-21 21:36:04 +05301668 int err;
1669
1670 pdrvdata.class = class_create(THIS_MODULE, "virtio-ports");
1671 if (IS_ERR(pdrvdata.class)) {
1672 err = PTR_ERR(pdrvdata.class);
1673 pr_err("Error %d creating virtio-ports class\n", err);
1674 return err;
1675 }
Amit Shahd99393e2009-12-21 22:36:21 +05301676
1677 pdrvdata.debugfs_dir = debugfs_create_dir("virtio-ports", NULL);
1678 if (!pdrvdata.debugfs_dir) {
1679 pr_warning("Error %ld creating debugfs dir for virtio-ports\n",
1680 PTR_ERR(pdrvdata.debugfs_dir));
1681 }
Amit Shah38edf582010-01-18 19:15:05 +05301682 INIT_LIST_HEAD(&pdrvdata.consoles);
1683
Rusty Russell31610432007-10-22 11:03:39 +10001684 return register_virtio_driver(&virtio_console);
1685}
Amit Shah71778762010-02-12 10:32:16 +05301686
1687static void __exit fini(void)
1688{
1689 unregister_virtio_driver(&virtio_console);
1690
1691 class_destroy(pdrvdata.class);
1692 if (pdrvdata.debugfs_dir)
1693 debugfs_remove_recursive(pdrvdata.debugfs_dir);
1694}
Rusty Russell31610432007-10-22 11:03:39 +10001695module_init(init);
Amit Shah71778762010-02-12 10:32:16 +05301696module_exit(fini);
Rusty Russell31610432007-10-22 11:03:39 +10001697
1698MODULE_DEVICE_TABLE(virtio, id_table);
1699MODULE_DESCRIPTION("Virtio console driver");
1700MODULE_LICENSE("GPL");