virtio_console.c 12 KB

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