debugfs.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. *
  3. * Intel Management Engine Interface (Intel MEI) Linux driver
  4. * Copyright (c) 2012-2013, Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. */
  16. #include <linux/slab.h>
  17. #include <linux/kernel.h>
  18. #include <linux/device.h>
  19. #include <linux/debugfs.h>
  20. #include <linux/pci.h>
  21. #include <linux/mei.h>
  22. #include "mei_dev.h"
  23. #include "hw.h"
  24. static ssize_t mei_dbgfs_read_meclients(struct file *fp, char __user *ubuf,
  25. size_t cnt, loff_t *ppos)
  26. {
  27. struct mei_device *dev = fp->private_data;
  28. struct mei_me_client *cl;
  29. const size_t bufsz = 1024;
  30. char *buf = kzalloc(bufsz, GFP_KERNEL);
  31. int i;
  32. int pos = 0;
  33. int ret;
  34. if (!buf)
  35. return -ENOMEM;
  36. pos += scnprintf(buf + pos, bufsz - pos,
  37. " |id|addr| UUID |con|msg len|\n");
  38. mutex_lock(&dev->device_lock);
  39. /* if the driver is not enabled the list won't be consistent */
  40. if (dev->dev_state != MEI_DEV_ENABLED)
  41. goto out;
  42. for (i = 0; i < dev->me_clients_num; i++) {
  43. cl = &dev->me_clients[i];
  44. /* skip me clients that cannot be connected */
  45. if (cl->props.max_number_of_connections == 0)
  46. continue;
  47. pos += scnprintf(buf + pos, bufsz - pos,
  48. "%2d|%2d|%4d|%pUl|%3d|%7d|\n",
  49. i, cl->client_id,
  50. cl->props.fixed_address,
  51. &cl->props.protocol_name,
  52. cl->props.max_number_of_connections,
  53. cl->props.max_msg_length);
  54. }
  55. out:
  56. mutex_unlock(&dev->device_lock);
  57. ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
  58. kfree(buf);
  59. return ret;
  60. }
  61. static const struct file_operations mei_dbgfs_fops_meclients = {
  62. .open = simple_open,
  63. .read = mei_dbgfs_read_meclients,
  64. .llseek = generic_file_llseek,
  65. };
  66. static ssize_t mei_dbgfs_read_active(struct file *fp, char __user *ubuf,
  67. size_t cnt, loff_t *ppos)
  68. {
  69. struct mei_device *dev = fp->private_data;
  70. struct mei_cl *cl;
  71. const size_t bufsz = 1024;
  72. char *buf;
  73. int i = 0;
  74. int pos = 0;
  75. int ret;
  76. if (!dev)
  77. return -ENODEV;
  78. buf = kzalloc(bufsz, GFP_KERNEL);
  79. if (!buf)
  80. return -ENOMEM;
  81. pos += scnprintf(buf + pos, bufsz - pos,
  82. " |me|host|state|rd|wr|\n");
  83. mutex_lock(&dev->device_lock);
  84. /* if the driver is not enabled the list won't b consitent */
  85. if (dev->dev_state != MEI_DEV_ENABLED)
  86. goto out;
  87. list_for_each_entry(cl, &dev->file_list, link) {
  88. pos += scnprintf(buf + pos, bufsz - pos,
  89. "%2d|%2d|%4d|%5d|%2d|%2d|\n",
  90. i, cl->me_client_id, cl->host_client_id, cl->state,
  91. cl->reading_state, cl->writing_state);
  92. i++;
  93. }
  94. out:
  95. mutex_unlock(&dev->device_lock);
  96. ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
  97. kfree(buf);
  98. return ret;
  99. }
  100. static const struct file_operations mei_dbgfs_fops_active = {
  101. .open = simple_open,
  102. .read = mei_dbgfs_read_active,
  103. .llseek = generic_file_llseek,
  104. };
  105. static ssize_t mei_dbgfs_read_devstate(struct file *fp, char __user *ubuf,
  106. size_t cnt, loff_t *ppos)
  107. {
  108. struct mei_device *dev = fp->private_data;
  109. const size_t bufsz = 1024;
  110. char *buf = kzalloc(bufsz, GFP_KERNEL);
  111. int pos = 0;
  112. int ret;
  113. if (!buf)
  114. return -ENOMEM;
  115. pos += scnprintf(buf + pos, bufsz - pos, "%s\n",
  116. mei_dev_state_str(dev->dev_state));
  117. ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, pos);
  118. kfree(buf);
  119. return ret;
  120. }
  121. static const struct file_operations mei_dbgfs_fops_devstate = {
  122. .open = simple_open,
  123. .read = mei_dbgfs_read_devstate,
  124. .llseek = generic_file_llseek,
  125. };
  126. /**
  127. * mei_dbgfs_deregister - Remove the debugfs files and directories
  128. * @mei - pointer to mei device private data
  129. */
  130. void mei_dbgfs_deregister(struct mei_device *dev)
  131. {
  132. if (!dev->dbgfs_dir)
  133. return;
  134. debugfs_remove_recursive(dev->dbgfs_dir);
  135. dev->dbgfs_dir = NULL;
  136. }
  137. /**
  138. * Add the debugfs files
  139. *
  140. */
  141. int mei_dbgfs_register(struct mei_device *dev, const char *name)
  142. {
  143. struct dentry *dir, *f;
  144. dir = debugfs_create_dir(name, NULL);
  145. if (!dir)
  146. return -ENOMEM;
  147. f = debugfs_create_file("meclients", S_IRUSR, dir,
  148. dev, &mei_dbgfs_fops_meclients);
  149. if (!f) {
  150. dev_err(&dev->pdev->dev, "meclients: registration failed\n");
  151. goto err;
  152. }
  153. f = debugfs_create_file("active", S_IRUSR, dir,
  154. dev, &mei_dbgfs_fops_active);
  155. if (!f) {
  156. dev_err(&dev->pdev->dev, "meclients: registration failed\n");
  157. goto err;
  158. }
  159. f = debugfs_create_file("devstate", S_IRUSR, dir,
  160. dev, &mei_dbgfs_fops_devstate);
  161. if (!f) {
  162. dev_err(&dev->pdev->dev, "devstate: registration failed\n");
  163. goto err;
  164. }
  165. dev->dbgfs_dir = dir;
  166. return 0;
  167. err:
  168. mei_dbgfs_deregister(dev);
  169. return -ENODEV;
  170. }