blob: 1d844a43a6bf252b52ccfddbaeb12bc59ecdb3ed [file] [log] [blame]
Rusty Russella23ea922010-01-18 19:14:55 +05301/*
2 * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
Rusty Russell31610432007-10-22 11:03:39 +10003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18#include <linux/err.h>
19#include <linux/init.h>
20#include <linux/virtio.h>
21#include <linux/virtio_console.h>
22#include "hvc_console.h"
23
Rusty Russell31610432007-10-22 11:03:39 +100024static struct virtqueue *in_vq, *out_vq;
25static struct virtio_device *vdev;
26
27/* This is our input buffer, and how much data is left in it. */
28static unsigned int in_len;
29static char *in, *inbuf;
30
Christian Borntraeger91fcad12008-06-20 15:24:15 +020031/* The hvc device */
32static struct hvc_struct *hvc;
33
Rusty Russell971f3392010-01-18 19:14:56 +053034/* This is the very early arch-specified put chars function. */
35static int (*early_put_chars)(u32, const char *, int);
36
Rusty Russella23ea922010-01-18 19:14:55 +053037/*
38 * The put_chars() callback is pretty straightforward.
Rusty Russell31610432007-10-22 11:03:39 +100039 *
Rusty Russella23ea922010-01-18 19:14:55 +053040 * We turn the characters into a scatter-gather list, add it to the
41 * output queue and then kick the Host. Then we sit here waiting for
42 * it to finish: inefficient in theory, but in practice
43 * implementations will do it immediately (lguest's Launcher does).
44 */
Rusty Russell31610432007-10-22 11:03:39 +100045static int put_chars(u32 vtermno, const char *buf, int count)
46{
47 struct scatterlist sg[1];
48 unsigned int len;
49
Rusty Russell971f3392010-01-18 19:14:56 +053050 if (unlikely(early_put_chars))
51 return early_put_chars(vtermno, buf, count);
52
Rusty Russell31610432007-10-22 11:03:39 +100053 /* This is a convenient routine to initialize a single-elem sg list */
54 sg_init_one(sg, buf, count);
55
Rusty Russella23ea922010-01-18 19:14:55 +053056 /*
57 * add_buf wants a token to identify this buffer: we hand it
58 * any non-NULL pointer, since there's only ever one buffer.
59 */
Rusty Russell3c1b27d2009-09-23 22:26:31 -060060 if (out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, (void *)1) >= 0) {
Rusty Russell31610432007-10-22 11:03:39 +100061 /* Tell Host to go! */
62 out_vq->vq_ops->kick(out_vq);
63 /* Chill out until it's done with the buffer. */
64 while (!out_vq->vq_ops->get_buf(out_vq, &len))
65 cpu_relax();
66 }
67
68 /* We're expected to return the amount of data we wrote: all of it. */
69 return count;
70}
71
Rusty Russella23ea922010-01-18 19:14:55 +053072/*
73 * Create a scatter-gather list representing our input buffer and put
74 * it in the queue.
75 */
Rusty Russell31610432007-10-22 11:03:39 +100076static void add_inbuf(void)
77{
78 struct scatterlist sg[1];
79 sg_init_one(sg, inbuf, PAGE_SIZE);
80
81 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell3c1b27d2009-09-23 22:26:31 -060082 if (in_vq->vq_ops->add_buf(in_vq, sg, 0, 1, inbuf) < 0)
Rusty Russell31610432007-10-22 11:03:39 +100083 BUG();
84 in_vq->vq_ops->kick(in_vq);
85}
86
Rusty Russella23ea922010-01-18 19:14:55 +053087/*
88 * get_chars() is the callback from the hvc_console infrastructure
89 * when an interrupt is received.
Rusty Russell31610432007-10-22 11:03:39 +100090 *
Rusty Russella23ea922010-01-18 19:14:55 +053091 * Most of the code deals with the fact that the hvc_console()
92 * infrastructure only asks us for 16 bytes at a time. We keep
93 * in_offset and in_used fields for partially-filled buffers.
94 */
Rusty Russell31610432007-10-22 11:03:39 +100095static int get_chars(u32 vtermno, char *buf, int count)
96{
97 /* If we don't have an input queue yet, we can't get input. */
98 BUG_ON(!in_vq);
99
100 /* No buffer? Try to get one. */
101 if (!in_len) {
102 in = in_vq->vq_ops->get_buf(in_vq, &in_len);
103 if (!in)
104 return 0;
105 }
106
107 /* You want more than we have to give? Well, try wanting less! */
108 if (in_len < count)
109 count = in_len;
110
111 /* Copy across to their buffer and increment offset. */
112 memcpy(buf, in, count);
113 in += count;
114 in_len -= count;
115
116 /* Finished? Re-register buffer so Host will use it again. */
117 if (in_len == 0)
118 add_inbuf();
119
120 return count;
121}
Rusty Russell31610432007-10-22 11:03:39 +1000122
Rusty Russella23ea922010-01-18 19:14:55 +0530123/*
Christian Borntraegerc2983452008-11-25 13:36:26 +0100124 * virtio console configuration. This supports:
125 * - console resize
126 */
127static void virtcons_apply_config(struct virtio_device *dev)
128{
129 struct winsize ws;
130
131 if (virtio_has_feature(dev, VIRTIO_CONSOLE_F_SIZE)) {
132 dev->config->get(dev,
133 offsetof(struct virtio_console_config, cols),
134 &ws.ws_col, sizeof(u16));
135 dev->config->get(dev,
136 offsetof(struct virtio_console_config, rows),
137 &ws.ws_row, sizeof(u16));
138 hvc_resize(hvc, ws);
139 }
140}
141
142/*
Rusty Russella23ea922010-01-18 19:14:55 +0530143 * we support only one console, the hvc struct is a global var We set
144 * the configuration at this point, since we now have a tty
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200145 */
146static int notifier_add_vio(struct hvc_struct *hp, int data)
147{
148 hp->irq_requested = 1;
Christian Borntraegerc2983452008-11-25 13:36:26 +0100149 virtcons_apply_config(vdev);
150
Christian Borntraeger91fcad12008-06-20 15:24:15 +0200151 return 0;
152}
153
154static void notifier_del_vio(struct hvc_struct *hp, int data)
155{
156 hp->irq_requested = 0;
157}
158
159static void hvc_handle_input(struct virtqueue *vq)
160{
161 if (hvc_poll(hvc))
162 hvc_kick();
163}
164
Rusty Russell971f3392010-01-18 19:14:56 +0530165/* The operations for the console. */
166static struct hv_ops hv_ops = {
167 .get_chars = get_chars,
168 .put_chars = put_chars,
169 .notifier_add = notifier_add_vio,
170 .notifier_del = notifier_del_vio,
171 .notifier_hangup = notifier_del_vio,
172};
173
174/*
175 * Console drivers are initialized very early so boot messages can go
176 * out, so we do things slightly differently from the generic virtio
177 * initialization of the net and block drivers.
178 *
179 * At this stage, the console is output-only. It's too early to set
180 * up a virtqueue, so we let the drivers do some boutique early-output
181 * thing.
182 */
183int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
184{
185 early_put_chars = put_chars;
186 return hvc_instantiate(0, 0, &hv_ops);
187}
188
Rusty Russella23ea922010-01-18 19:14:55 +0530189/*
190 * Once we're further in boot, we get probed like any other virtio
191 * device. At this stage we set up the output virtqueue.
Rusty Russell31610432007-10-22 11:03:39 +1000192 *
Rusty Russella23ea922010-01-18 19:14:55 +0530193 * To set up and manage our virtual console, we call hvc_alloc().
194 * Since we never remove the console device we never need this pointer
195 * again.
Rusty Russell31610432007-10-22 11:03:39 +1000196 *
Rusty Russella23ea922010-01-18 19:14:55 +0530197 * Finally we put our input buffer in the input queue, ready to
198 * receive.
199 */
Randy Dunlap139b8292007-11-05 14:51:01 -0800200static int __devinit virtcons_probe(struct virtio_device *dev)
Rusty Russell31610432007-10-22 11:03:39 +1000201{
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600202 vq_callback_t *callbacks[] = { hvc_handle_input, NULL};
203 const char *names[] = { "input", "output" };
204 struct virtqueue *vqs[2];
Rusty Russell31610432007-10-22 11:03:39 +1000205 int err;
Rusty Russell31610432007-10-22 11:03:39 +1000206
207 vdev = dev;
208
209 /* This is the scratch page we use to receive console input */
210 inbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
211 if (!inbuf) {
212 err = -ENOMEM;
213 goto fail;
214 }
215
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600216 /* Find the queues. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600217 err = vdev->config->find_vqs(vdev, 2, vqs, callbacks, names);
218 if (err)
Rusty Russell31610432007-10-22 11:03:39 +1000219 goto free;
Rusty Russell31610432007-10-22 11:03:39 +1000220
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600221 in_vq = vqs[0];
222 out_vq = vqs[1];
Rusty Russell31610432007-10-22 11:03:39 +1000223
Rusty Russella23ea922010-01-18 19:14:55 +0530224 /*
225 * The first argument of hvc_alloc() is the virtual console
226 * number, so we use zero. The second argument is the
227 * parameter for the notification mechanism (like irq
228 * number). We currently leave this as zero, virtqueues have
229 * implicit notifications.
Rusty Russell31610432007-10-22 11:03:39 +1000230 *
Rusty Russella23ea922010-01-18 19:14:55 +0530231 * The third argument is a "struct hv_ops" containing the
232 * put_chars(), get_chars(), notifier_add() and notifier_del()
233 * pointers. The final argument is the output buffer size: we
234 * can do any size, so we put PAGE_SIZE here.
235 */
Rusty Russell971f3392010-01-18 19:14:56 +0530236 hvc = hvc_alloc(0, 0, &hv_ops, PAGE_SIZE);
Rusty Russell31610432007-10-22 11:03:39 +1000237 if (IS_ERR(hvc)) {
238 err = PTR_ERR(hvc);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600239 goto free_vqs;
Rusty Russell31610432007-10-22 11:03:39 +1000240 }
241
242 /* Register the input buffer the first time. */
243 add_inbuf();
Rusty Russell971f3392010-01-18 19:14:56 +0530244
245 /* Start using the new console output. */
246 early_put_chars = NULL;
Rusty Russell31610432007-10-22 11:03:39 +1000247 return 0;
248
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600249free_vqs:
250 vdev->config->del_vqs(vdev);
Rusty Russell31610432007-10-22 11:03:39 +1000251free:
252 kfree(inbuf);
253fail:
254 return err;
255}
256
257static struct virtio_device_id id_table[] = {
258 { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
259 { 0 },
260};
261
Christian Borntraegerc2983452008-11-25 13:36:26 +0100262static unsigned int features[] = {
263 VIRTIO_CONSOLE_F_SIZE,
264};
265
Rusty Russell31610432007-10-22 11:03:39 +1000266static struct virtio_driver virtio_console = {
Christian Borntraegerc2983452008-11-25 13:36:26 +0100267 .feature_table = features,
268 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell31610432007-10-22 11:03:39 +1000269 .driver.name = KBUILD_MODNAME,
270 .driver.owner = THIS_MODULE,
271 .id_table = id_table,
272 .probe = virtcons_probe,
Christian Borntraegerc2983452008-11-25 13:36:26 +0100273 .config_changed = virtcons_apply_config,
Rusty Russell31610432007-10-22 11:03:39 +1000274};
275
276static int __init init(void)
277{
278 return register_virtio_driver(&virtio_console);
279}
280module_init(init);
281
282MODULE_DEVICE_TABLE(virtio, id_table);
283MODULE_DESCRIPTION("Virtio console driver");
284MODULE_LICENSE("GPL");