Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 3 | * |
| 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 24 | static struct virtqueue *in_vq, *out_vq; |
| 25 | static struct virtio_device *vdev; |
| 26 | |
| 27 | /* This is our input buffer, and how much data is left in it. */ |
| 28 | static unsigned int in_len; |
| 29 | static char *in, *inbuf; |
| 30 | |
Christian Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 31 | /* The hvc device */ |
| 32 | static struct hvc_struct *hvc; |
| 33 | |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 34 | /* This is the very early arch-specified put chars function. */ |
| 35 | static int (*early_put_chars)(u32, const char *, int); |
| 36 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 37 | /* |
| 38 | * The put_chars() callback is pretty straightforward. |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 39 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 40 | * 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 45 | static int put_chars(u32 vtermno, const char *buf, int count) |
| 46 | { |
| 47 | struct scatterlist sg[1]; |
| 48 | unsigned int len; |
| 49 | |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 50 | if (unlikely(early_put_chars)) |
| 51 | return early_put_chars(vtermno, buf, count); |
| 52 | |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 53 | /* This is a convenient routine to initialize a single-elem sg list */ |
| 54 | sg_init_one(sg, buf, count); |
| 55 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 56 | /* |
| 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 Russell | 3c1b27d | 2009-09-23 22:26:31 -0600 | [diff] [blame] | 60 | if (out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, (void *)1) >= 0) { |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 61 | /* 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 Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 72 | /* |
| 73 | * Create a scatter-gather list representing our input buffer and put |
| 74 | * it in the queue. |
| 75 | */ |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 76 | static 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 Russell | 3c1b27d | 2009-09-23 22:26:31 -0600 | [diff] [blame] | 82 | if (in_vq->vq_ops->add_buf(in_vq, sg, 0, 1, inbuf) < 0) |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 83 | BUG(); |
| 84 | in_vq->vq_ops->kick(in_vq); |
| 85 | } |
| 86 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 87 | /* |
| 88 | * get_chars() is the callback from the hvc_console infrastructure |
| 89 | * when an interrupt is received. |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 90 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 91 | * 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 95 | static 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 122 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 123 | /* |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 124 | * virtio console configuration. This supports: |
| 125 | * - console resize |
| 126 | */ |
| 127 | static 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 Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 143 | * 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 Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 145 | */ |
| 146 | static int notifier_add_vio(struct hvc_struct *hp, int data) |
| 147 | { |
| 148 | hp->irq_requested = 1; |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 149 | virtcons_apply_config(vdev); |
| 150 | |
Christian Borntraeger | 91fcad1 | 2008-06-20 15:24:15 +0200 | [diff] [blame] | 151 | return 0; |
| 152 | } |
| 153 | |
| 154 | static void notifier_del_vio(struct hvc_struct *hp, int data) |
| 155 | { |
| 156 | hp->irq_requested = 0; |
| 157 | } |
| 158 | |
| 159 | static void hvc_handle_input(struct virtqueue *vq) |
| 160 | { |
| 161 | if (hvc_poll(hvc)) |
| 162 | hvc_kick(); |
| 163 | } |
| 164 | |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 165 | /* The operations for the console. */ |
Rusty Russell | 1dff399 | 2009-11-28 12:20:26 +0530 | [diff] [blame] | 166 | static const struct hv_ops hv_ops = { |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 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 | */ |
| 183 | int __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 Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 189 | /* |
| 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 192 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 193 | * 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 Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 196 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 197 | * Finally we put our input buffer in the input queue, ready to |
| 198 | * receive. |
| 199 | */ |
Randy Dunlap | 139b829 | 2007-11-05 14:51:01 -0800 | [diff] [blame] | 200 | static int __devinit virtcons_probe(struct virtio_device *dev) |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 201 | { |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 202 | vq_callback_t *callbacks[] = { hvc_handle_input, NULL}; |
| 203 | const char *names[] = { "input", "output" }; |
| 204 | struct virtqueue *vqs[2]; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 205 | int err; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 206 | |
Amit Shah | f550804a | 2010-01-18 19:14:59 +0530 | [diff] [blame^] | 207 | if (vdev) { |
| 208 | dev_warn(&vdev->dev, |
| 209 | "Multiple virtio-console devices not supported yet\n"); |
| 210 | return -EEXIST; |
| 211 | } |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 212 | vdev = dev; |
| 213 | |
| 214 | /* This is the scratch page we use to receive console input */ |
| 215 | inbuf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 216 | if (!inbuf) { |
| 217 | err = -ENOMEM; |
| 218 | goto fail; |
| 219 | } |
| 220 | |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 221 | /* Find the queues. */ |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 222 | err = vdev->config->find_vqs(vdev, 2, vqs, callbacks, names); |
| 223 | if (err) |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 224 | goto free; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 225 | |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 226 | in_vq = vqs[0]; |
| 227 | out_vq = vqs[1]; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 228 | |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 229 | /* |
| 230 | * The first argument of hvc_alloc() is the virtual console |
| 231 | * number, so we use zero. The second argument is the |
| 232 | * parameter for the notification mechanism (like irq |
| 233 | * number). We currently leave this as zero, virtqueues have |
| 234 | * implicit notifications. |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 235 | * |
Rusty Russell | a23ea92 | 2010-01-18 19:14:55 +0530 | [diff] [blame] | 236 | * The third argument is a "struct hv_ops" containing the |
| 237 | * put_chars(), get_chars(), notifier_add() and notifier_del() |
| 238 | * pointers. The final argument is the output buffer size: we |
| 239 | * can do any size, so we put PAGE_SIZE here. |
| 240 | */ |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 241 | hvc = hvc_alloc(0, 0, &hv_ops, PAGE_SIZE); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 242 | if (IS_ERR(hvc)) { |
| 243 | err = PTR_ERR(hvc); |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 244 | goto free_vqs; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /* Register the input buffer the first time. */ |
| 248 | add_inbuf(); |
Rusty Russell | 971f339 | 2010-01-18 19:14:56 +0530 | [diff] [blame] | 249 | |
| 250 | /* Start using the new console output. */ |
| 251 | early_put_chars = NULL; |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 252 | return 0; |
| 253 | |
Michael S. Tsirkin | d2a7ddd | 2009-06-12 22:16:36 -0600 | [diff] [blame] | 254 | free_vqs: |
| 255 | vdev->config->del_vqs(vdev); |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 256 | free: |
| 257 | kfree(inbuf); |
| 258 | fail: |
| 259 | return err; |
| 260 | } |
| 261 | |
| 262 | static struct virtio_device_id id_table[] = { |
| 263 | { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID }, |
| 264 | { 0 }, |
| 265 | }; |
| 266 | |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 267 | static unsigned int features[] = { |
| 268 | VIRTIO_CONSOLE_F_SIZE, |
| 269 | }; |
| 270 | |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 271 | static struct virtio_driver virtio_console = { |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 272 | .feature_table = features, |
| 273 | .feature_table_size = ARRAY_SIZE(features), |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 274 | .driver.name = KBUILD_MODNAME, |
| 275 | .driver.owner = THIS_MODULE, |
| 276 | .id_table = id_table, |
| 277 | .probe = virtcons_probe, |
Christian Borntraeger | c298345 | 2008-11-25 13:36:26 +0100 | [diff] [blame] | 278 | .config_changed = virtcons_apply_config, |
Rusty Russell | 3161043 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 279 | }; |
| 280 | |
| 281 | static int __init init(void) |
| 282 | { |
| 283 | return register_virtio_driver(&virtio_console); |
| 284 | } |
| 285 | module_init(init); |
| 286 | |
| 287 | MODULE_DEVICE_TABLE(virtio, id_table); |
| 288 | MODULE_DESCRIPTION("Virtio console driver"); |
| 289 | MODULE_LICENSE("GPL"); |