skl-debug.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /*
  2. * skl-debug.c - Debugfs for skl driver
  3. *
  4. * Copyright (C) 2016-17 Intel Corp
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 of the License.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. */
  15. #include <linux/pci.h>
  16. #include <linux/debugfs.h>
  17. #include <uapi/sound/skl-tplg-interface.h>
  18. #include "skl.h"
  19. #include "skl-sst-dsp.h"
  20. #include "skl-sst-ipc.h"
  21. #include "skl-topology.h"
  22. #include "../common/sst-dsp.h"
  23. #include "../common/sst-dsp-priv.h"
  24. #define MOD_BUF PAGE_SIZE
  25. #define FW_REG_BUF PAGE_SIZE
  26. #define FW_REG_SIZE 0x60
  27. struct skl_debug {
  28. struct skl *skl;
  29. struct device *dev;
  30. struct dentry *fs;
  31. struct dentry *modules;
  32. u8 fw_read_buff[FW_REG_BUF];
  33. };
  34. static ssize_t skl_print_pins(struct skl_module_pin *m_pin, char *buf,
  35. int max_pin, ssize_t size, bool direction)
  36. {
  37. int i;
  38. ssize_t ret = 0;
  39. for (i = 0; i < max_pin; i++) {
  40. ret += scnprintf(buf + size, MOD_BUF - size,
  41. "%s %d\n\tModule %d\n\tInstance %d\n\t"
  42. "In-used %s\n\tType %s\n"
  43. "\tState %d\n\tIndex %d\n",
  44. direction ? "Input Pin:" : "Output Pin:",
  45. i, m_pin[i].id.module_id,
  46. m_pin[i].id.instance_id,
  47. m_pin[i].in_use ? "Used" : "Unused",
  48. m_pin[i].is_dynamic ? "Dynamic" : "Static",
  49. m_pin[i].pin_state, i);
  50. size += ret;
  51. }
  52. return ret;
  53. }
  54. static ssize_t skl_print_fmt(struct skl_module_fmt *fmt, char *buf,
  55. ssize_t size, bool direction)
  56. {
  57. return scnprintf(buf + size, MOD_BUF - size,
  58. "%s\n\tCh %d\n\tFreq %d\n\tBit depth %d\n\t"
  59. "Valid bit depth %d\n\tCh config %#x\n\tInterleaving %d\n\t"
  60. "Sample Type %d\n\tCh Map %#x\n",
  61. direction ? "Input Format:" : "Output Format:",
  62. fmt->channels, fmt->s_freq, fmt->bit_depth,
  63. fmt->valid_bit_depth, fmt->ch_cfg,
  64. fmt->interleaving_style, fmt->sample_type,
  65. fmt->ch_map);
  66. }
  67. static ssize_t module_read(struct file *file, char __user *user_buf,
  68. size_t count, loff_t *ppos)
  69. {
  70. struct skl_module_cfg *mconfig = file->private_data;
  71. char *buf;
  72. ssize_t ret;
  73. buf = kzalloc(MOD_BUF, GFP_KERNEL);
  74. if (!buf)
  75. return -ENOMEM;
  76. ret = scnprintf(buf, MOD_BUF, "Module:\n\tUUID %pUL\n\tModule id %d\n"
  77. "\tInstance id %d\n\tPvt_id %d\n", mconfig->guid,
  78. mconfig->id.module_id, mconfig->id.instance_id,
  79. mconfig->id.pvt_id);
  80. ret += scnprintf(buf + ret, MOD_BUF - ret,
  81. "Resources:\n\tMCPS %#x\n\tIBS %#x\n\tOBS %#x\t\n",
  82. mconfig->mcps, mconfig->ibs, mconfig->obs);
  83. ret += scnprintf(buf + ret, MOD_BUF - ret,
  84. "Module data:\n\tCore %d\n\tIn queue %d\n\t"
  85. "Out queue %d\n\tType %s\n",
  86. mconfig->core_id, mconfig->max_in_queue,
  87. mconfig->max_out_queue,
  88. mconfig->is_loadable ? "loadable" : "inbuilt");
  89. ret += skl_print_fmt(mconfig->in_fmt, buf, ret, true);
  90. ret += skl_print_fmt(mconfig->out_fmt, buf, ret, false);
  91. ret += scnprintf(buf + ret, MOD_BUF - ret,
  92. "Fixup:\n\tParams %#x\n\tConverter %#x\n",
  93. mconfig->params_fixup, mconfig->converter);
  94. ret += scnprintf(buf + ret, MOD_BUF - ret,
  95. "Module Gateway:\n\tType %#x\n\tVbus %#x\n\tHW conn %#x\n\tSlot %#x\n",
  96. mconfig->dev_type, mconfig->vbus_id,
  97. mconfig->hw_conn_type, mconfig->time_slot);
  98. ret += scnprintf(buf + ret, MOD_BUF - ret,
  99. "Pipeline:\n\tID %d\n\tPriority %d\n\tConn Type %d\n\t"
  100. "Pages %#x\n", mconfig->pipe->ppl_id,
  101. mconfig->pipe->pipe_priority, mconfig->pipe->conn_type,
  102. mconfig->pipe->memory_pages);
  103. ret += scnprintf(buf + ret, MOD_BUF - ret,
  104. "\tParams:\n\t\tHost DMA %d\n\t\tLink DMA %d\n",
  105. mconfig->pipe->p_params->host_dma_id,
  106. mconfig->pipe->p_params->link_dma_id);
  107. ret += scnprintf(buf + ret, MOD_BUF - ret,
  108. "\tPCM params:\n\t\tCh %d\n\t\tFreq %d\n\t\tFormat %d\n",
  109. mconfig->pipe->p_params->ch,
  110. mconfig->pipe->p_params->s_freq,
  111. mconfig->pipe->p_params->s_fmt);
  112. ret += scnprintf(buf + ret, MOD_BUF - ret,
  113. "\tLink %#x\n\tStream %#x\n",
  114. mconfig->pipe->p_params->linktype,
  115. mconfig->pipe->p_params->stream);
  116. ret += scnprintf(buf + ret, MOD_BUF - ret,
  117. "\tState %d\n\tPassthru %s\n",
  118. mconfig->pipe->state,
  119. mconfig->pipe->passthru ? "true" : "false");
  120. ret += skl_print_pins(mconfig->m_in_pin, buf,
  121. mconfig->max_in_queue, ret, true);
  122. ret += skl_print_pins(mconfig->m_out_pin, buf,
  123. mconfig->max_out_queue, ret, false);
  124. ret += scnprintf(buf + ret, MOD_BUF - ret,
  125. "Other:\n\tDomain %d\n\tHomogeneous Input %s\n\t"
  126. "Homogeneous Output %s\n\tIn Queue Mask %d\n\t"
  127. "Out Queue Mask %d\n\tDMA ID %d\n\tMem Pages %d\n\t"
  128. "Module Type %d\n\tModule State %d\n",
  129. mconfig->domain,
  130. mconfig->homogenous_inputs ? "true" : "false",
  131. mconfig->homogenous_outputs ? "true" : "false",
  132. mconfig->in_queue_mask, mconfig->out_queue_mask,
  133. mconfig->dma_id, mconfig->mem_pages, mconfig->m_state,
  134. mconfig->m_type);
  135. ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
  136. kfree(buf);
  137. return ret;
  138. }
  139. static const struct file_operations mcfg_fops = {
  140. .open = simple_open,
  141. .read = module_read,
  142. .llseek = default_llseek,
  143. };
  144. void skl_debug_init_module(struct skl_debug *d,
  145. struct snd_soc_dapm_widget *w,
  146. struct skl_module_cfg *mconfig)
  147. {
  148. if (!debugfs_create_file(w->name, 0444,
  149. d->modules, mconfig,
  150. &mcfg_fops))
  151. dev_err(d->dev, "%s: module debugfs init failed\n", w->name);
  152. }
  153. static ssize_t fw_softreg_read(struct file *file, char __user *user_buf,
  154. size_t count, loff_t *ppos)
  155. {
  156. struct skl_debug *d = file->private_data;
  157. struct sst_dsp *sst = d->skl->skl_sst->dsp;
  158. size_t w0_stat_sz = sst->addr.w0_stat_sz;
  159. void __iomem *in_base = sst->mailbox.in_base;
  160. void __iomem *fw_reg_addr;
  161. unsigned int offset;
  162. char *tmp;
  163. ssize_t ret = 0;
  164. tmp = kzalloc(FW_REG_BUF, GFP_KERNEL);
  165. if (!tmp)
  166. return -ENOMEM;
  167. fw_reg_addr = in_base - w0_stat_sz;
  168. memset(d->fw_read_buff, 0, FW_REG_BUF);
  169. if (w0_stat_sz > 0)
  170. __ioread32_copy(d->fw_read_buff, fw_reg_addr, w0_stat_sz >> 2);
  171. for (offset = 0; offset < FW_REG_SIZE; offset += 16) {
  172. ret += scnprintf(tmp + ret, FW_REG_BUF - ret, "%#.4x: ", offset);
  173. hex_dump_to_buffer(d->fw_read_buff + offset, 16, 16, 4,
  174. tmp + ret, FW_REG_BUF - ret, 0);
  175. ret += strlen(tmp + ret);
  176. /* print newline for each offset */
  177. if (FW_REG_BUF - ret > 0)
  178. tmp[ret++] = '\n';
  179. }
  180. ret = simple_read_from_buffer(user_buf, count, ppos, tmp, ret);
  181. kfree(tmp);
  182. return ret;
  183. }
  184. static const struct file_operations soft_regs_ctrl_fops = {
  185. .open = simple_open,
  186. .read = fw_softreg_read,
  187. .llseek = default_llseek,
  188. };
  189. struct skl_debug *skl_debugfs_init(struct skl *skl)
  190. {
  191. struct skl_debug *d;
  192. d = devm_kzalloc(&skl->pci->dev, sizeof(*d), GFP_KERNEL);
  193. if (!d)
  194. return NULL;
  195. /* create the debugfs dir with platform component's debugfs as parent */
  196. d->fs = debugfs_create_dir("dsp",
  197. skl->component->debugfs_root);
  198. if (IS_ERR(d->fs) || !d->fs) {
  199. dev_err(&skl->pci->dev, "debugfs root creation failed\n");
  200. return NULL;
  201. }
  202. d->skl = skl;
  203. d->dev = &skl->pci->dev;
  204. /* now create the module dir */
  205. d->modules = debugfs_create_dir("modules", d->fs);
  206. if (IS_ERR(d->modules) || !d->modules) {
  207. dev_err(&skl->pci->dev, "modules debugfs create failed\n");
  208. goto err;
  209. }
  210. if (!debugfs_create_file("fw_soft_regs_rd", 0444, d->fs, d,
  211. &soft_regs_ctrl_fops)) {
  212. dev_err(d->dev, "fw soft regs control debugfs init failed\n");
  213. goto err;
  214. }
  215. return d;
  216. err:
  217. debugfs_remove_recursive(d->fs);
  218. return NULL;
  219. }