virtio_console.c 8.7 KB

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