ath_procfs.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (c) 2013-2014, 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #if defined(CONFIG_ATH_PROCFS_DIAG_SUPPORT)
  27. #include <linux/module.h> /* Specifically, a module */
  28. #include <linux/kernel.h> /* We're doing kernel work */
  29. #include <linux/version.h> /* We're doing kernel work */
  30. #include <linux/proc_fs.h> /* Necessary because we use the proc fs */
  31. #include <asm/uaccess.h> /* for copy_from_user */
  32. #include "ol_if_athvar.h"
  33. #include "hif.h"
  34. #if defined(HIF_USB)
  35. #include "if_usb.h"
  36. #endif
  37. #if defined(HIF_SDIO)
  38. #include "if_ath_sdio.h"
  39. #endif
  40. #include "hif_debug.h"
  41. #define PROCFS_NAME "athdiagpfs"
  42. #define PROCFS_DIR "cld"
  43. /**
  44. * This structure hold information about the /proc file
  45. *
  46. */
  47. static struct proc_dir_entry *proc_file, *proc_dir;
  48. static void *get_hif_hdl_from_file(struct file *file)
  49. {
  50. struct hif_opaque_softc *scn;
  51. scn = (struct hif_opaque_softc *)PDE_DATA(file_inode(file));
  52. return (void *)scn;
  53. }
  54. static ssize_t ath_procfs_diag_read(struct file *file, char __user *buf,
  55. size_t count, loff_t *pos)
  56. {
  57. hif_handle_t hif_hdl;
  58. int rv;
  59. uint8_t *read_buffer = NULL;
  60. read_buffer = qdf_mem_malloc(count);
  61. if (NULL == read_buffer) {
  62. HIF_ERROR("%s: cdf_mem_alloc failed", __func__);
  63. return -ENOMEM;
  64. }
  65. hif_hdl = get_hif_hdl_from_file(file);
  66. HIF_DBG("rd buff 0x%p cnt %zu offset 0x%x buf 0x%p",
  67. read_buffer, count, (int)*pos, buf);
  68. if ((count == 4) && ((((uint32_t) (*pos)) & 3) == 0)) {
  69. /* reading a word? */
  70. rv = hif_diag_read_access(hif_hdl, (uint32_t)(*pos),
  71. (uint32_t *)read_buffer);
  72. } else {
  73. rv = hif_diag_read_mem(hif_hdl, (uint32_t)(*pos),
  74. (uint8_t *)read_buffer, count);
  75. }
  76. if (copy_to_user(buf, read_buffer, count)) {
  77. qdf_mem_free(read_buffer);
  78. HIF_ERROR("%s: copy_to_user error in /proc/%s",
  79. __func__, PROCFS_NAME);
  80. return -EFAULT;
  81. } else
  82. qdf_mem_free(read_buffer);
  83. if (rv == 0) {
  84. return count;
  85. } else {
  86. return -EIO;
  87. }
  88. }
  89. static ssize_t ath_procfs_diag_write(struct file *file,
  90. const char __user *buf,
  91. size_t count, loff_t *pos)
  92. {
  93. hif_handle_t hif_hdl;
  94. int rv;
  95. uint8_t *write_buffer = NULL;
  96. write_buffer = qdf_mem_malloc(count);
  97. if (NULL == write_buffer) {
  98. HIF_ERROR("%s: cdf_mem_alloc failed", __func__);
  99. return -ENOMEM;
  100. }
  101. if (copy_from_user(write_buffer, buf, count)) {
  102. qdf_mem_free(write_buffer);
  103. HIF_ERROR("%s: copy_to_user error in /proc/%s",
  104. __func__, PROCFS_NAME);
  105. return -EFAULT;
  106. }
  107. hif_hdl = get_hif_hdl_from_file(file);
  108. HIF_DBG("wr buff 0x%p buf 0x%p cnt %zu offset 0x%x value 0x%x",
  109. write_buffer, buf, count,
  110. (int)*pos, *((uint32_t *) write_buffer));
  111. if ((count == 4) && ((((uint32_t) (*pos)) & 3) == 0)) {
  112. /* reading a word? */
  113. uint32_t value = *((uint32_t *)write_buffer);
  114. rv = hif_diag_write_access(hif_hdl, (uint32_t)(*pos), value);
  115. } else {
  116. rv = hif_diag_write_mem(hif_hdl, (uint32_t)(*pos),
  117. (uint8_t *)write_buffer, count);
  118. }
  119. qdf_mem_free(write_buffer);
  120. if (rv == 0) {
  121. return count;
  122. } else {
  123. return -EIO;
  124. }
  125. }
  126. static const struct file_operations athdiag_fops = {
  127. .read = ath_procfs_diag_read,
  128. .write = ath_procfs_diag_write,
  129. };
  130. /**
  131. *This function is called when the module is loaded
  132. *
  133. */
  134. int athdiag_procfs_init(void *scn)
  135. {
  136. proc_dir = proc_mkdir(PROCFS_DIR, NULL);
  137. if (proc_dir == NULL) {
  138. remove_proc_entry(PROCFS_DIR, NULL);
  139. HIF_ERROR("%s: Error: Could not initialize /proc/%s",
  140. __func__, PROCFS_DIR);
  141. return -ENOMEM;
  142. }
  143. proc_file = proc_create_data(PROCFS_NAME,
  144. S_IRUSR | S_IWUSR, proc_dir,
  145. &athdiag_fops, (void *)scn);
  146. if (proc_file == NULL) {
  147. remove_proc_entry(PROCFS_NAME, proc_dir);
  148. HIF_ERROR("%s: Could not initialize /proc/%s",
  149. __func__, PROCFS_NAME);
  150. return -ENOMEM;
  151. }
  152. HIF_DBG("/proc/%s/%s created", PROCFS_DIR, PROCFS_NAME);
  153. return 0; /* everything is ok */
  154. }
  155. /**
  156. *This function is called when the module is unloaded
  157. *
  158. */
  159. void athdiag_procfs_remove(void)
  160. {
  161. if (proc_dir != NULL) {
  162. remove_proc_entry(PROCFS_NAME, proc_dir);
  163. HIF_DBG("/proc/%s/%s removed", PROCFS_DIR, PROCFS_NAME);
  164. remove_proc_entry(PROCFS_DIR, NULL);
  165. HIF_DBG("/proc/%s removed", PROCFS_DIR);
  166. proc_dir = NULL;
  167. }
  168. }
  169. #else
  170. int athdiag_procfs_init(void *scn)
  171. {
  172. return 0;
  173. }
  174. void athdiag_procfs_remove(void) {}
  175. #endif