virtio_console.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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/list.h>
  21. #include <linux/spinlock.h>
  22. #include <linux/virtio.h>
  23. #include <linux/virtio_console.h>
  24. #include "hvc_console.h"
  25. /*
  26. * This is a global struct for storing common data for all the devices
  27. * this driver handles.
  28. *
  29. * Mainly, it has a linked list for all the consoles in one place so
  30. * that callbacks from hvc for get_chars(), put_chars() work properly
  31. * across multiple devices and multiple ports per device.
  32. */
  33. struct ports_driver_data {
  34. /*
  35. * This is used to keep track of the number of hvc consoles
  36. * spawned by this driver. This number is given as the first
  37. * argument to hvc_alloc(). To correctly map an initial
  38. * console spawned via hvc_instantiate to the console being
  39. * hooked up via hvc_alloc, we need to pass the same vtermno.
  40. *
  41. * We also just assume the first console being initialised was
  42. * the first one that got used as the initial console.
  43. */
  44. unsigned int next_vtermno;
  45. /* All the console devices handled by this driver */
  46. struct list_head consoles;
  47. };
  48. static struct ports_driver_data pdrvdata;
  49. DEFINE_SPINLOCK(pdrvdata_lock);
  50. struct port_buffer {
  51. char *buf;
  52. /* size of the buffer in *buf above */
  53. size_t size;
  54. /* used length of the buffer */
  55. size_t len;
  56. /* offset in the buf from which to consume data */
  57. size_t offset;
  58. };
  59. struct port {
  60. struct virtqueue *in_vq, *out_vq;
  61. struct virtio_device *vdev;
  62. /* The current buffer from which data has to be fed to readers */
  63. struct port_buffer *inbuf;
  64. /* For console ports, hvc != NULL and these are valid. */
  65. /* The hvc device */
  66. struct hvc_struct *hvc;
  67. /* We'll place all consoles in a list in the pdrvdata struct */
  68. struct list_head list;
  69. /* Our vterm number. */
  70. u32 vtermno;
  71. };
  72. /* This is the very early arch-specified put chars function. */
  73. static int (*early_put_chars)(u32, const char *, int);
  74. static struct port *find_port_by_vtermno(u32 vtermno)
  75. {
  76. struct port *port;
  77. unsigned long flags;
  78. spin_lock_irqsave(&pdrvdata_lock, flags);
  79. list_for_each_entry(port, &pdrvdata.consoles, list) {
  80. if (port->vtermno == vtermno)
  81. goto out;
  82. }
  83. port = NULL;
  84. out:
  85. spin_unlock_irqrestore(&pdrvdata_lock, flags);
  86. return port;
  87. }
  88. static void free_buf(struct port_buffer *buf)
  89. {
  90. kfree(buf->buf);
  91. kfree(buf);
  92. }
  93. static struct port_buffer *alloc_buf(size_t buf_size)
  94. {
  95. struct port_buffer *buf;
  96. buf = kmalloc(sizeof(*buf), GFP_KERNEL);
  97. if (!buf)
  98. goto fail;
  99. buf->buf = kzalloc(buf_size, GFP_KERNEL);
  100. if (!buf->buf)
  101. goto free_buf;
  102. buf->len = 0;
  103. buf->offset = 0;
  104. buf->size = buf_size;
  105. return buf;
  106. free_buf:
  107. kfree(buf);
  108. fail:
  109. return NULL;
  110. }
  111. /* Callers should take appropriate locks */
  112. static void *get_inbuf(struct port *port)
  113. {
  114. struct port_buffer *buf;
  115. struct virtqueue *vq;
  116. unsigned int len;
  117. vq = port->in_vq;
  118. buf = vq->vq_ops->get_buf(vq, &len);
  119. if (buf) {
  120. buf->len = len;
  121. buf->offset = 0;
  122. }
  123. return buf;
  124. }
  125. /*
  126. * Create a scatter-gather list representing our input buffer and put
  127. * it in the queue.
  128. *
  129. * Callers should take appropriate locks.
  130. */
  131. static void add_inbuf(struct virtqueue *vq, struct port_buffer *buf)
  132. {
  133. struct scatterlist sg[1];
  134. sg_init_one(sg, buf->buf, buf->size);
  135. if (vq->vq_ops->add_buf(vq, sg, 0, 1, buf) < 0)
  136. BUG();
  137. vq->vq_ops->kick(vq);
  138. }
  139. /*
  140. * The put_chars() callback is pretty straightforward.
  141. *
  142. * We turn the characters into a scatter-gather list, add it to the
  143. * output queue and then kick the Host. Then we sit here waiting for
  144. * it to finish: inefficient in theory, but in practice
  145. * implementations will do it immediately (lguest's Launcher does).
  146. */
  147. static int put_chars(u32 vtermno, const char *buf, int count)
  148. {
  149. struct scatterlist sg[1];
  150. struct port *port;
  151. unsigned int len;
  152. port = find_port_by_vtermno(vtermno);
  153. if (!port)
  154. return 0;
  155. if (unlikely(early_put_chars))
  156. return early_put_chars(vtermno, buf, count);
  157. /* This is a convenient routine to initialize a single-elem sg list */
  158. sg_init_one(sg, buf, count);
  159. /* This shouldn't fail: if it does, we lose chars. */
  160. if (port->out_vq->vq_ops->add_buf(port->out_vq, sg, 1, 0, port) >= 0) {
  161. /* Tell Host to go! */
  162. port->out_vq->vq_ops->kick(port->out_vq);
  163. while (!port->out_vq->vq_ops->get_buf(port->out_vq, &len))
  164. cpu_relax();
  165. }
  166. /* We're expected to return the amount of data we wrote: all of it. */
  167. return count;
  168. }
  169. /*
  170. * get_chars() is the callback from the hvc_console infrastructure
  171. * when an interrupt is received.
  172. *
  173. * Most of the code deals with the fact that the hvc_console()
  174. * infrastructure only asks us for 16 bytes at a time. We keep
  175. * in_offset and in_used fields for partially-filled buffers.
  176. */
  177. static int get_chars(u32 vtermno, char *buf, int count)
  178. {
  179. struct port *port;
  180. port = find_port_by_vtermno(vtermno);
  181. if (!port)
  182. return 0;
  183. /* If we don't have an input queue yet, we can't get input. */
  184. BUG_ON(!port->in_vq);
  185. /* No more in buffer? See if they've (re)used it. */
  186. if (port->inbuf->offset == port->inbuf->len) {
  187. if (!get_inbuf(port))
  188. return 0;
  189. }
  190. /* You want more than we have to give? Well, try wanting less! */
  191. if (port->inbuf->offset + count > port->inbuf->len)
  192. count = port->inbuf->len - port->inbuf->offset;
  193. /* Copy across to their buffer and increment offset. */
  194. memcpy(buf, port->inbuf->buf + port->inbuf->offset, count);
  195. port->inbuf->offset += count;
  196. /* Finished? Re-register buffer so Host will use it again. */
  197. if (port->inbuf->offset == port->inbuf->len)
  198. add_inbuf(port->in_vq, port->inbuf);
  199. return count;
  200. }
  201. /*
  202. * virtio console configuration. This supports:
  203. * - console resize
  204. */
  205. static void virtcons_apply_config(struct virtio_device *dev)
  206. {
  207. struct port *port = dev->priv;
  208. struct winsize ws;
  209. if (virtio_has_feature(dev, VIRTIO_CONSOLE_F_SIZE)) {
  210. dev->config->get(dev,
  211. offsetof(struct virtio_console_config, cols),
  212. &ws.ws_col, sizeof(u16));
  213. dev->config->get(dev,
  214. offsetof(struct virtio_console_config, rows),
  215. &ws.ws_row, sizeof(u16));
  216. hvc_resize(port->hvc, ws);
  217. }
  218. }
  219. /* We set the configuration at this point, since we now have a tty */
  220. static int notifier_add_vio(struct hvc_struct *hp, int data)
  221. {
  222. struct port *port;
  223. port = find_port_by_vtermno(hp->vtermno);
  224. if (!port)
  225. return -EINVAL;
  226. hp->irq_requested = 1;
  227. virtcons_apply_config(port->vdev);
  228. return 0;
  229. }
  230. static void notifier_del_vio(struct hvc_struct *hp, int data)
  231. {
  232. hp->irq_requested = 0;
  233. }
  234. static void hvc_handle_input(struct virtqueue *vq)
  235. {
  236. struct port *port = vq->vdev->priv;
  237. if (hvc_poll(port->hvc))
  238. hvc_kick();
  239. }
  240. /* The operations for the console. */
  241. static const struct hv_ops hv_ops = {
  242. .get_chars = get_chars,
  243. .put_chars = put_chars,
  244. .notifier_add = notifier_add_vio,
  245. .notifier_del = notifier_del_vio,
  246. .notifier_hangup = notifier_del_vio,
  247. };
  248. /*
  249. * Console drivers are initialized very early so boot messages can go
  250. * out, so we do things slightly differently from the generic virtio
  251. * initialization of the net and block drivers.
  252. *
  253. * At this stage, the console is output-only. It's too early to set
  254. * up a virtqueue, so we let the drivers do some boutique early-output
  255. * thing.
  256. */
  257. int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
  258. {
  259. early_put_chars = put_chars;
  260. return hvc_instantiate(0, 0, &hv_ops);
  261. }
  262. static struct port *__devinit add_port(u32 vtermno)
  263. {
  264. struct port *port;
  265. port = kmalloc(sizeof(*port), GFP_KERNEL);
  266. if (!port)
  267. return NULL;
  268. port->inbuf = alloc_buf(PAGE_SIZE);
  269. if (!port->inbuf) {
  270. kfree(port);
  271. return NULL;
  272. }
  273. port->hvc = NULL;
  274. port->vtermno = vtermno;
  275. return port;
  276. }
  277. static void free_port(struct port *port)
  278. {
  279. free_buf(port->inbuf);
  280. kfree(port);
  281. }
  282. /*
  283. * Once we're further in boot, we get probed like any other virtio
  284. * device. At this stage we set up the output virtqueue.
  285. *
  286. * To set up and manage our virtual console, we call hvc_alloc().
  287. * Since we never remove the console device we never need this pointer
  288. * again.
  289. *
  290. * Finally we put our input buffer in the input queue, ready to
  291. * receive.
  292. */
  293. static int __devinit virtcons_probe(struct virtio_device *vdev)
  294. {
  295. vq_callback_t *callbacks[] = { hvc_handle_input, NULL};
  296. const char *names[] = { "input", "output" };
  297. struct virtqueue *vqs[2];
  298. struct port *port;
  299. int err;
  300. port = add_port(pdrvdata.next_vtermno);
  301. if (!port) {
  302. err = -ENOMEM;
  303. goto fail;
  304. }
  305. /* Attach this port to this virtio_device, and vice-versa. */
  306. port->vdev = vdev;
  307. vdev->priv = port;
  308. /* Find the queues. */
  309. err = vdev->config->find_vqs(vdev, 2, vqs, callbacks, names);
  310. if (err)
  311. goto free;
  312. port->in_vq = vqs[0];
  313. port->out_vq = vqs[1];
  314. /*
  315. * The first argument of hvc_alloc() is the virtual console
  316. * number. The second argument is the parameter for the
  317. * notification mechanism (like irq number). We currently
  318. * leave this as zero, virtqueues have implicit notifications.
  319. *
  320. * The third argument is a "struct hv_ops" containing the
  321. * put_chars(), get_chars(), notifier_add() and notifier_del()
  322. * pointers. The final argument is the output buffer size: we
  323. * can do any size, so we put PAGE_SIZE here.
  324. */
  325. port->hvc = hvc_alloc(port->vtermno, 0, &hv_ops, PAGE_SIZE);
  326. if (IS_ERR(port->hvc)) {
  327. err = PTR_ERR(port->hvc);
  328. goto free_vqs;
  329. }
  330. /* Add to vtermno list. */
  331. spin_lock_irq(&pdrvdata_lock);
  332. pdrvdata.next_vtermno++;
  333. list_add(&port->list, &pdrvdata.consoles);
  334. spin_unlock_irq(&pdrvdata_lock);
  335. /* Register the input buffer the first time. */
  336. add_inbuf(port->in_vq, port->inbuf);
  337. /* Start using the new console output. */
  338. early_put_chars = NULL;
  339. return 0;
  340. free_vqs:
  341. vdev->config->del_vqs(vdev);
  342. free:
  343. free_port(port);
  344. fail:
  345. return err;
  346. }
  347. static struct virtio_device_id id_table[] = {
  348. { VIRTIO_ID_CONSOLE, VIRTIO_DEV_ANY_ID },
  349. { 0 },
  350. };
  351. static unsigned int features[] = {
  352. VIRTIO_CONSOLE_F_SIZE,
  353. };
  354. static struct virtio_driver virtio_console = {
  355. .feature_table = features,
  356. .feature_table_size = ARRAY_SIZE(features),
  357. .driver.name = KBUILD_MODNAME,
  358. .driver.owner = THIS_MODULE,
  359. .id_table = id_table,
  360. .probe = virtcons_probe,
  361. .config_changed = virtcons_apply_config,
  362. };
  363. static int __init init(void)
  364. {
  365. INIT_LIST_HEAD(&pdrvdata.consoles);
  366. return register_virtio_driver(&virtio_console);
  367. }
  368. module_init(init);
  369. MODULE_DEVICE_TABLE(virtio, id_table);
  370. MODULE_DESCRIPTION("Virtio console driver");
  371. MODULE_LICENSE("GPL");