powernv-op-panel.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*
  2. * OPAL Operator Panel Display Driver
  3. *
  4. * Copyright 2016, Suraj Jitindar Singh, IBM Corporation.
  5. */
  6. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  7. #include <linux/init.h>
  8. #include <linux/module.h>
  9. #include <linux/kernel.h>
  10. #include <linux/fs.h>
  11. #include <linux/device.h>
  12. #include <linux/errno.h>
  13. #include <linux/mutex.h>
  14. #include <linux/of.h>
  15. #include <linux/slab.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/miscdevice.h>
  18. #include <asm/opal.h>
  19. /*
  20. * This driver creates a character device (/dev/op_panel) which exposes the
  21. * operator panel (character LCD display) on IBM Power Systems machines
  22. * with FSPs.
  23. * A character buffer written to the device will be displayed on the
  24. * operator panel.
  25. */
  26. static DEFINE_MUTEX(oppanel_mutex);
  27. static u32 num_lines, oppanel_size;
  28. static oppanel_line_t *oppanel_lines;
  29. static char *oppanel_data;
  30. static loff_t oppanel_llseek(struct file *filp, loff_t offset, int whence)
  31. {
  32. return fixed_size_llseek(filp, offset, whence, oppanel_size);
  33. }
  34. static ssize_t oppanel_read(struct file *filp, char __user *userbuf, size_t len,
  35. loff_t *f_pos)
  36. {
  37. return simple_read_from_buffer(userbuf, len, f_pos, oppanel_data,
  38. oppanel_size);
  39. }
  40. static int __op_panel_update_display(void)
  41. {
  42. struct opal_msg msg;
  43. int rc, token;
  44. token = opal_async_get_token_interruptible();
  45. if (token < 0) {
  46. if (token != -ERESTARTSYS)
  47. pr_debug("Couldn't get OPAL async token [token=%d]\n",
  48. token);
  49. return token;
  50. }
  51. rc = opal_write_oppanel_async(token, oppanel_lines, num_lines);
  52. switch (rc) {
  53. case OPAL_ASYNC_COMPLETION:
  54. rc = opal_async_wait_response(token, &msg);
  55. if (rc) {
  56. pr_debug("Failed to wait for async response [rc=%d]\n",
  57. rc);
  58. break;
  59. }
  60. rc = opal_get_async_rc(msg);
  61. if (rc != OPAL_SUCCESS) {
  62. pr_debug("OPAL async call returned failed [rc=%d]\n",
  63. rc);
  64. break;
  65. }
  66. case OPAL_SUCCESS:
  67. break;
  68. default:
  69. pr_debug("OPAL write op-panel call failed [rc=%d]\n", rc);
  70. }
  71. opal_async_release_token(token);
  72. return rc;
  73. }
  74. static ssize_t oppanel_write(struct file *filp, const char __user *userbuf,
  75. size_t len, loff_t *f_pos)
  76. {
  77. loff_t f_pos_prev = *f_pos;
  78. ssize_t ret;
  79. int rc;
  80. if (!*f_pos)
  81. memset(oppanel_data, ' ', oppanel_size);
  82. else if (*f_pos >= oppanel_size)
  83. return -EFBIG;
  84. ret = simple_write_to_buffer(oppanel_data, oppanel_size, f_pos, userbuf,
  85. len);
  86. if (ret > 0) {
  87. rc = __op_panel_update_display();
  88. if (rc != OPAL_SUCCESS) {
  89. pr_err_ratelimited("OPAL call failed to write to op panel display [rc=%d]\n",
  90. rc);
  91. *f_pos = f_pos_prev;
  92. return -EIO;
  93. }
  94. }
  95. return ret;
  96. }
  97. static int oppanel_open(struct inode *inode, struct file *filp)
  98. {
  99. if (!mutex_trylock(&oppanel_mutex)) {
  100. pr_debug("Device Busy\n");
  101. return -EBUSY;
  102. }
  103. return 0;
  104. }
  105. static int oppanel_release(struct inode *inode, struct file *filp)
  106. {
  107. mutex_unlock(&oppanel_mutex);
  108. return 0;
  109. }
  110. static const struct file_operations oppanel_fops = {
  111. .owner = THIS_MODULE,
  112. .llseek = oppanel_llseek,
  113. .read = oppanel_read,
  114. .write = oppanel_write,
  115. .open = oppanel_open,
  116. .release = oppanel_release
  117. };
  118. static struct miscdevice oppanel_dev = {
  119. .minor = MISC_DYNAMIC_MINOR,
  120. .name = "op_panel",
  121. .fops = &oppanel_fops
  122. };
  123. static int oppanel_probe(struct platform_device *pdev)
  124. {
  125. struct device_node *np = pdev->dev.of_node;
  126. u32 line_len;
  127. int rc, i;
  128. rc = of_property_read_u32(np, "#length", &line_len);
  129. if (rc) {
  130. pr_err_ratelimited("Operator panel length property not found\n");
  131. return rc;
  132. }
  133. rc = of_property_read_u32(np, "#lines", &num_lines);
  134. if (rc) {
  135. pr_err_ratelimited("Operator panel lines property not found\n");
  136. return rc;
  137. }
  138. oppanel_size = line_len * num_lines;
  139. pr_devel("Operator panel of size %u found with %u lines of length %u\n",
  140. oppanel_size, num_lines, line_len);
  141. oppanel_data = kcalloc(oppanel_size, sizeof(*oppanel_data), GFP_KERNEL);
  142. if (!oppanel_data)
  143. return -ENOMEM;
  144. oppanel_lines = kcalloc(num_lines, sizeof(oppanel_line_t), GFP_KERNEL);
  145. if (!oppanel_lines) {
  146. rc = -ENOMEM;
  147. goto free_oppanel_data;
  148. }
  149. memset(oppanel_data, ' ', oppanel_size);
  150. for (i = 0; i < num_lines; i++) {
  151. oppanel_lines[i].line_len = cpu_to_be64(line_len);
  152. oppanel_lines[i].line = cpu_to_be64(__pa(&oppanel_data[i *
  153. line_len]));
  154. }
  155. rc = misc_register(&oppanel_dev);
  156. if (rc) {
  157. pr_err_ratelimited("Failed to register as misc device\n");
  158. goto free_oppanel;
  159. }
  160. return 0;
  161. free_oppanel:
  162. kfree(oppanel_lines);
  163. free_oppanel_data:
  164. kfree(oppanel_data);
  165. return rc;
  166. }
  167. static int oppanel_remove(struct platform_device *pdev)
  168. {
  169. misc_deregister(&oppanel_dev);
  170. kfree(oppanel_lines);
  171. kfree(oppanel_data);
  172. return 0;
  173. }
  174. static const struct of_device_id oppanel_match[] = {
  175. { .compatible = "ibm,opal-oppanel" },
  176. { },
  177. };
  178. static struct platform_driver oppanel_driver = {
  179. .driver = {
  180. .name = "powernv-op-panel",
  181. .of_match_table = oppanel_match,
  182. },
  183. .probe = oppanel_probe,
  184. .remove = oppanel_remove,
  185. };
  186. module_platform_driver(oppanel_driver);
  187. MODULE_DEVICE_TABLE(of, oppanel_match);
  188. MODULE_LICENSE("GPL v2");
  189. MODULE_DESCRIPTION("PowerNV Operator Panel LCD Display Driver");
  190. MODULE_AUTHOR("Suraj Jitindar Singh <sjitindarsingh@gmail.com>");