virtio_console.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. * Copyright (C) 2006, 2007, 2009 Rusty Russell, IBM Corporation
  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. struct port {
  24. struct virtqueue *in_vq, *out_vq;
  25. struct virtio_device *vdev;
  26. /* This is our input buffer, and how much data is left in it. */
  27. char *inbuf;
  28. unsigned int used_len, offset;
  29. /* The hvc device */
  30. struct hvc_struct *hvc;
  31. };
  32. /* We have one port ready to go immediately, for a console. */
  33. static struct port console;
  34. /* This is the very early arch-specified put chars function. */
  35. static int (*early_put_chars)(u32, const char *, int);
  36. /*
  37. * The put_chars() callback is pretty straightforward.
  38. *
  39. * We turn the characters into a scatter-gather list, add it to the
  40. * output queue and then kick the Host. Then we sit here waiting for
  41. * it to finish: inefficient in theory, but in practice
  42. * implementations will do it immediately (lguest's Launcher does).
  43. */
  44. static int put_chars(u32 vtermno, const char *buf, int count)
  45. {
  46. struct scatterlist sg[1];
  47. unsigned int len;
  48. struct port *port;
  49. if (unlikely(early_put_chars))
  50. return early_put_chars(vtermno, buf, count);
  51. port = &console;
  52. /* This is a convenient routine to initialize a single-elem sg list */
  53. sg_init_one(sg, buf, count);
  54. /* This shouldn't fail: if it does, we lose chars. */
  55. if (port->out_vq->vq_ops->add_buf(port->out_vq, sg, 1, 0, port) >= 0) {
  56. /* Tell Host to go! */
  57. port->out_vq->vq_ops->kick(port->out_vq);
  58. while (!port->out_vq->vq_ops->get_buf(port->out_vq, &len))
  59. cpu_relax();
  60. }
  61. /* We're expected to return the amount of data we wrote: all of it. */
  62. return count;
  63. }
  64. /*
  65. * Create a scatter-gather list representing our input buffer and put
  66. * it in the queue.
  67. */
  68. static void add_inbuf(struct port *port)
  69. {
  70. struct scatterlist sg[1];
  71. sg_init_one(sg, port->inbuf, PAGE_SIZE);
  72. /* Should always be able to add one buffer to an empty queue. */
  73. if (port->in_vq->vq_ops->add_buf(port->in_vq, sg, 0, 1, port) < 0)
  74. BUG();
  75. port->in_vq->vq_ops->kick(port->in_vq);
  76. }
  77. /*
  78. * get_chars() is the callback from the hvc_console infrastructure
  79. * when an interrupt is received.
  80. *
  81. * Most of the code deals with the fact that the hvc_console()
  82. * infrastructure only asks us for 16 bytes at a time. We keep
  83. * in_offset and in_used fields for partially-filled buffers.
  84. */
  85. static int get_chars(u32 vtermno, char *buf, int count)
  86. {
  87. struct port *port;
  88. port = &console;
  89. /* If we don't have an input queue yet, we can't get input. */
  90. BUG_ON(!port->in_vq);
  91. /* No more in buffer? See if they've (re)used it. */
  92. if (port->offset == port->used_len) {
  93. if (!port->in_vq->vq_ops->get_buf(port->in_vq, &port->used_len))
  94. return 0;
  95. port->offset = 0;
  96. }
  97. /* You want more than we have to give? Well, try wanting less! */
  98. if (port->offset + count > port->used_len)
  99. count = port->used_len - port->offset;
  100. /* Copy across to their buffer and increment offset. */
  101. memcpy(buf, port->inbuf + port->offset, count);
  102. port->offset += count;
  103. /* Finished? Re-register buffer so Host will use it again. */
  104. if (port->offset == port->used_len)
  105. add_inbuf(port);
  106. return count;
  107. }
  108. /*
  109. * virtio console configuration. This supports:
  110. * - console resize
  111. */
  112. static void virtcons_apply_config(struct virtio_device *dev)
  113. {
  114. struct winsize ws;
  115. if (virtio_has_feature(dev, VIRTIO_CONSOLE_F_SIZE)) {
  116. dev->config->get(dev,
  117. offsetof(struct virtio_console_config, cols),
  118. &ws.ws_col, sizeof(u16));
  119. dev->config->get(dev,
  120. offsetof(struct virtio_console_config, rows),
  121. &ws.ws_row, sizeof(u16));
  122. hvc_resize(console.hvc, ws);
  123. }
  124. }
  125. /*
  126. * we support only one console, the hvc struct is a global var We set
  127. * the configuration at this point, since we now have a tty
  128. */
  129. static int notifier_add_vio(struct hvc_struct *hp, int data)
  130. {
  131. hp->irq_requested = 1;
  132. virtcons_apply_config(console.vdev);
  133. return 0;
  134. }
  135. static void notifier_del_vio(struct hvc_struct *hp, int data)
  136. {
  137. hp->irq_requested = 0;
  138. }
  139. static void hvc_handle_input(struct virtqueue *vq)
  140. {
  141. if (hvc_poll(console.hvc))
  142. hvc_kick();
  143. }
  144. /* The operations for the console. */
  145. static const struct hv_ops hv_ops = {
  146. .get_chars = get_chars,
  147. .put_chars = put_chars,
  148. .notifier_add = notifier_add_vio,
  149. .notifier_del = notifier_del_vio,
  150. .notifier_hangup = notifier_del_vio,
  151. };
  152. /*
  153. * Console drivers are initialized very early so boot messages can go
  154. * out, so we do things slightly differently from the generic virtio
  155. * initialization of the net and block drivers.
  156. *
  157. * At this stage, the console is output-only. It's too early to set
  158. * up a virtqueue, so we let the drivers do some boutique early-output
  159. * thing.
  160. */
  161. int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
  162. {
  163. early_put_chars = put_chars;
  164. return hvc_instantiate(0, 0, &hv_ops);
  165. }
  166. /*
  167. * Once we're further in boot, we get probed like any other virtio
  168. * device. At this stage we set up the output virtqueue.
  169. *
  170. * To set up and manage our virtual console, we call hvc_alloc().
  171. * Since we never remove the console device we never need this pointer
  172. * again.
  173. *
  174. * Finally we put our input buffer in the input queue, ready to
  175. * receive.
  176. */
  177. static int __devinit virtcons_probe(struct virtio_device *vdev)
  178. {
  179. vq_callback_t *callbacks[] = { hvc_handle_input, NULL};
  180. const char *names[] = { "input", "output" };
  181. struct virtqueue *vqs[2];
  182. struct port *port;
  183. int err;
  184. port = &console;
  185. if (port->vdev) {
  186. dev_warn(&port->vdev->dev,
  187. "Multiple virtio-console devices not supported yet\n");
  188. return -EEXIST;
  189. }
  190. port->vdev = vdev;
  191. /* This is the scratch page we use to receive console input */
  192. port->used_len = 0;
  193. port->inbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  194. if (!port->inbuf) {
  195. err = -ENOMEM;
  196. goto fail;
  197. }
  198. /* Find the queues. */
  199. err = vdev->config->find_vqs(vdev, 2, vqs, callbacks, names);
  200. if (err)
  201. goto free;
  202. port->in_vq = vqs[0];
  203. port->out_vq = vqs[1];
  204. /*
  205. * The first argument of hvc_alloc() is the virtual console
  206. * number, so we use zero. The second argument is the
  207. * parameter for the notification mechanism (like irq
  208. * number). We currently leave this as zero, virtqueues have
  209. * implicit notifications.
  210. *
  211. * The third argument is a "struct hv_ops" containing the
  212. * put_chars(), get_chars(), notifier_add() and notifier_del()
  213. * pointers. The final argument is the output buffer size: we
  214. * can do any size, so we put PAGE_SIZE here.
  215. */
  216. port->hvc = hvc_alloc(0, 0, &hv_ops, PAGE_SIZE);
  217. if (IS_ERR(port->hvc)) {
  218. err = PTR_ERR(port->hvc);
  219. goto free_vqs;
  220. }
  221. /* Register the input buffer the first time. */
  222. add_inbuf(port);
  223. /* Start using the new console output. */
  224. early_put_chars = NULL;
  225. return 0;
  226. free_vqs:
  227. vdev->config->del_vqs(vdev);
  228. free:
  229. kfree(port->inbuf);
  230. fail:
  231. return err;
  232. }
  233. static struct virtio_device_id id_table[] = {
  234. { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
  235. { 0 },
  236. };
  237. static unsigned int features[] = {
  238. VIRTIO_CONSOLE_F_SIZE,
  239. };
  240. static struct virtio_driver virtio_console = {
  241. .feature_table = features,
  242. .feature_table_size = ARRAY_SIZE(features),
  243. .driver.name = KBUILD_MODNAME,
  244. .driver.owner = THIS_MODULE,
  245. .id_table = id_table,
  246. .probe = virtcons_probe,
  247. .config_changed = virtcons_apply_config,
  248. };
  249. static int __init init(void)
  250. {
  251. return register_virtio_driver(&virtio_console);
  252. }
  253. module_init(init);
  254. MODULE_DEVICE_TABLE(virtio, id_table);
  255. MODULE_DESCRIPTION("Virtio console driver");
  256. MODULE_LICENSE("GPL");