Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Intel MIC Platform Software Stack (MPSS)
  4 *
  5 * Copyright(c) 2013 Intel Corporation.
  6 *
 
 
 
 
 
 
 
 
 
 
 
 
  7 * Intel MIC Host driver.
 
  8 */
  9#include <linux/debugfs.h>
 10#include <linux/pci.h>
 11#include <linux/seq_file.h>
 12
 13#include <linux/mic_common.h>
 14#include "../common/mic_dev.h"
 15#include "mic_device.h"
 16#include "mic_smpt.h"
 
 17
 18/* Debugfs parent dir */
 19static struct dentry *mic_dbg;
 20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 21static int mic_smpt_show(struct seq_file *s, void *pos)
 22{
 23	int i;
 24	struct mic_device *mdev = s->private;
 25	unsigned long flags;
 26
 27	seq_printf(s, "MIC %-2d |%-10s| %-14s %-10s\n",
 28		   mdev->id, "SMPT entry", "SW DMA addr", "RefCount");
 29	seq_puts(s, "====================================================\n");
 30
 31	if (mdev->smpt) {
 32		struct mic_smpt_info *smpt_info = mdev->smpt;
 33		spin_lock_irqsave(&smpt_info->smpt_lock, flags);
 34		for (i = 0; i < smpt_info->info.num_reg; i++) {
 35			seq_printf(s, "%9s|%-10d| %-#14llx %-10lld\n",
 36				   " ",  i, smpt_info->entry[i].dma_addr,
 37				   smpt_info->entry[i].ref_count);
 38		}
 39		spin_unlock_irqrestore(&smpt_info->smpt_lock, flags);
 40	}
 41	seq_puts(s, "====================================================\n");
 42	return 0;
 43}
 44
 45DEFINE_SHOW_ATTRIBUTE(mic_smpt);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 46
 47static int mic_post_code_show(struct seq_file *s, void *pos)
 48{
 49	struct mic_device *mdev = s->private;
 50	u32 reg = mdev->ops->get_postcode(mdev);
 51
 52	seq_printf(s, "%c%c", reg & 0xff, (reg >> 8) & 0xff);
 53	return 0;
 54}
 55
 56DEFINE_SHOW_ATTRIBUTE(mic_post_code);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 57
 58static int mic_msi_irq_info_show(struct seq_file *s, void *pos)
 59{
 60	struct mic_device *mdev  = s->private;
 61	int reg;
 62	int i, j;
 63	u16 entry;
 64	u16 vector;
 65	struct pci_dev *pdev = mdev->pdev;
 
 66
 67	if (pci_dev_msi_enabled(pdev)) {
 68		for (i = 0; i < mdev->irq_info.num_vectors; i++) {
 69			if (pdev->msix_enabled) {
 70				entry = mdev->irq_info.msix_entries[i].entry;
 71				vector = mdev->irq_info.msix_entries[i].vector;
 72			} else {
 73				entry = 0;
 74				vector = pdev->irq;
 75			}
 76
 77			reg = mdev->intr_ops->read_msi_to_src_map(mdev, entry);
 78
 79			seq_printf(s, "%s %-10d %s %-10d MXAR[%d]: %08X\n",
 80				   "IRQ:", vector, "Entry:", entry, i, reg);
 81
 82			seq_printf(s, "%-10s", "offset:");
 83			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
 84				seq_printf(s, "%4d ", j);
 85			seq_puts(s, "\n");
 86
 87
 88			seq_printf(s, "%-10s", "count:");
 89			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
 90				seq_printf(s, "%4d ",
 91					   (mdev->irq_info.mic_msi_map[i] &
 92					   BIT(j)) ? 1 : 0);
 93			seq_puts(s, "\n\n");
 94		}
 95	} else {
 96		seq_puts(s, "MSI/MSIx interrupts not enabled\n");
 97	}
 98
 99	return 0;
100}
101
102DEFINE_SHOW_ATTRIBUTE(mic_msi_irq_info);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
104/**
105 * mic_create_debug_dir - Initialize MIC debugfs entries.
106 */
107void mic_create_debug_dir(struct mic_device *mdev)
108{
109	char name[16];
110
111	if (!mic_dbg)
112		return;
113
114	scnprintf(name, sizeof(name), "mic%d", mdev->id);
115	mdev->dbg_dir = debugfs_create_dir(name, mic_dbg);
 
116
117	debugfs_create_file("smpt", 0444, mdev->dbg_dir, mdev,
118			    &mic_smpt_fops);
 
 
 
 
119
120	debugfs_create_file("post_code", 0444, mdev->dbg_dir, mdev,
121			    &mic_post_code_fops);
 
 
 
 
 
122
123	debugfs_create_file("msi_irq_info", 0444, mdev->dbg_dir, mdev,
124			    &mic_msi_irq_info_fops);
125}
126
127/**
128 * mic_delete_debug_dir - Uninitialize MIC debugfs entries.
129 */
130void mic_delete_debug_dir(struct mic_device *mdev)
131{
132	if (!mdev->dbg_dir)
133		return;
134
135	debugfs_remove_recursive(mdev->dbg_dir);
136}
137
138/**
139 * mic_init_debugfs - Initialize global debugfs entry.
140 */
141void __init mic_init_debugfs(void)
142{
143	mic_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
 
 
144}
145
146/**
147 * mic_exit_debugfs - Uninitialize global debugfs entry
148 */
149void mic_exit_debugfs(void)
150{
151	debugfs_remove(mic_dbg);
152}
v3.15
 
  1/*
  2 * Intel MIC Platform Software Stack (MPSS)
  3 *
  4 * Copyright(c) 2013 Intel Corporation.
  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, version 2, as
  8 * published by the Free Software Foundation.
  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 * The full GNU General Public License is included in this distribution in
 16 * the file called "COPYING".
 17 *
 18 * Intel MIC Host driver.
 19 *
 20 */
 21#include <linux/debugfs.h>
 22#include <linux/pci.h>
 23#include <linux/seq_file.h>
 24
 25#include <linux/mic_common.h>
 26#include "../common/mic_dev.h"
 27#include "mic_device.h"
 28#include "mic_smpt.h"
 29#include "mic_virtio.h"
 30
 31/* Debugfs parent dir */
 32static struct dentry *mic_dbg;
 33
 34/**
 35 * mic_log_buf_show - Display MIC kernel log buffer.
 36 *
 37 * log_buf addr/len is read from System.map by user space
 38 * and populated in sysfs entries.
 39 */
 40static int mic_log_buf_show(struct seq_file *s, void *unused)
 41{
 42	void __iomem *log_buf_va;
 43	int __iomem *log_buf_len_va;
 44	struct mic_device *mdev = s->private;
 45	void *kva;
 46	int size;
 47	unsigned long aper_offset;
 48
 49	if (!mdev || !mdev->log_buf_addr || !mdev->log_buf_len)
 50		goto done;
 51	/*
 52	 * Card kernel will never be relocated and any kernel text/data mapping
 53	 * can be translated to phys address by subtracting __START_KERNEL_map.
 54	 */
 55	aper_offset = (unsigned long)mdev->log_buf_len - __START_KERNEL_map;
 56	log_buf_len_va = mdev->aper.va + aper_offset;
 57	aper_offset = (unsigned long)mdev->log_buf_addr - __START_KERNEL_map;
 58	log_buf_va = mdev->aper.va + aper_offset;
 59	size = ioread32(log_buf_len_va);
 60
 61	kva = kmalloc(size, GFP_KERNEL);
 62	if (!kva)
 63		goto done;
 64	mutex_lock(&mdev->mic_mutex);
 65	memcpy_fromio(kva, log_buf_va, size);
 66	switch (mdev->state) {
 67	case MIC_ONLINE:
 68		/* Fall through */
 69	case MIC_SHUTTING_DOWN:
 70		seq_write(s, kva, size);
 71		break;
 72	default:
 73		break;
 74	}
 75	mutex_unlock(&mdev->mic_mutex);
 76	kfree(kva);
 77done:
 78	return 0;
 79}
 80
 81static int mic_log_buf_open(struct inode *inode, struct file *file)
 82{
 83	return single_open(file, mic_log_buf_show, inode->i_private);
 84}
 85
 86static int mic_log_buf_release(struct inode *inode, struct file *file)
 87{
 88	return single_release(inode, file);
 89}
 90
 91static const struct file_operations log_buf_ops = {
 92	.owner   = THIS_MODULE,
 93	.open    = mic_log_buf_open,
 94	.read    = seq_read,
 95	.llseek  = seq_lseek,
 96	.release = mic_log_buf_release
 97};
 98
 99static int mic_smpt_show(struct seq_file *s, void *pos)
100{
101	int i;
102	struct mic_device *mdev = s->private;
103	unsigned long flags;
104
105	seq_printf(s, "MIC %-2d |%-10s| %-14s %-10s\n",
106		   mdev->id, "SMPT entry", "SW DMA addr", "RefCount");
107	seq_puts(s, "====================================================\n");
108
109	if (mdev->smpt) {
110		struct mic_smpt_info *smpt_info = mdev->smpt;
111		spin_lock_irqsave(&smpt_info->smpt_lock, flags);
112		for (i = 0; i < smpt_info->info.num_reg; i++) {
113			seq_printf(s, "%9s|%-10d| %-#14llx %-10lld\n",
114				   " ",  i, smpt_info->entry[i].dma_addr,
115				   smpt_info->entry[i].ref_count);
116		}
117		spin_unlock_irqrestore(&smpt_info->smpt_lock, flags);
118	}
119	seq_puts(s, "====================================================\n");
120	return 0;
121}
122
123static int mic_smpt_debug_open(struct inode *inode, struct file *file)
124{
125	return single_open(file, mic_smpt_show, inode->i_private);
126}
127
128static int mic_smpt_debug_release(struct inode *inode, struct file *file)
129{
130	return single_release(inode, file);
131}
132
133static const struct file_operations smpt_file_ops = {
134	.owner   = THIS_MODULE,
135	.open    = mic_smpt_debug_open,
136	.read    = seq_read,
137	.llseek  = seq_lseek,
138	.release = mic_smpt_debug_release
139};
140
141static int mic_soft_reset_show(struct seq_file *s, void *pos)
142{
143	struct mic_device *mdev = s->private;
144
145	mic_stop(mdev, true);
146	return 0;
147}
148
149static int mic_soft_reset_debug_open(struct inode *inode, struct file *file)
150{
151	return single_open(file, mic_soft_reset_show, inode->i_private);
152}
153
154static int mic_soft_reset_debug_release(struct inode *inode, struct file *file)
155{
156	return single_release(inode, file);
157}
158
159static const struct file_operations soft_reset_ops = {
160	.owner   = THIS_MODULE,
161	.open    = mic_soft_reset_debug_open,
162	.read    = seq_read,
163	.llseek  = seq_lseek,
164	.release = mic_soft_reset_debug_release
165};
166
167static int mic_post_code_show(struct seq_file *s, void *pos)
168{
169	struct mic_device *mdev = s->private;
170	u32 reg = mdev->ops->get_postcode(mdev);
171
172	seq_printf(s, "%c%c", reg & 0xff, (reg >> 8) & 0xff);
173	return 0;
174}
175
176static int mic_post_code_debug_open(struct inode *inode, struct file *file)
177{
178	return single_open(file, mic_post_code_show, inode->i_private);
179}
180
181static int mic_post_code_debug_release(struct inode *inode, struct file *file)
182{
183	return single_release(inode, file);
184}
185
186static const struct file_operations post_code_ops = {
187	.owner   = THIS_MODULE,
188	.open    = mic_post_code_debug_open,
189	.read    = seq_read,
190	.llseek  = seq_lseek,
191	.release = mic_post_code_debug_release
192};
193
194static int mic_dp_show(struct seq_file *s, void *pos)
195{
196	struct mic_device *mdev = s->private;
197	struct mic_device_desc *d;
198	struct mic_device_ctrl *dc;
199	struct mic_vqconfig *vqconfig;
200	__u32 *features;
201	__u8 *config;
202	struct mic_bootparam *bootparam = mdev->dp;
203	int i, j;
204
205	seq_printf(s, "Bootparam: magic 0x%x\n",
206		   bootparam->magic);
207	seq_printf(s, "Bootparam: h2c_shutdown_db %d\n",
208		   bootparam->h2c_shutdown_db);
209	seq_printf(s, "Bootparam: h2c_config_db %d\n",
210		   bootparam->h2c_config_db);
211	seq_printf(s, "Bootparam: c2h_shutdown_db %d\n",
212		   bootparam->c2h_shutdown_db);
213	seq_printf(s, "Bootparam: shutdown_status %d\n",
214		   bootparam->shutdown_status);
215	seq_printf(s, "Bootparam: shutdown_card %d\n",
216		   bootparam->shutdown_card);
217
218	for (i = sizeof(*bootparam); i < MIC_DP_SIZE;
219	     i += mic_total_desc_size(d)) {
220		d = mdev->dp + i;
221		dc = (void *)d + mic_aligned_desc_size(d);
222
223		/* end of list */
224		if (d->type == 0)
225			break;
226
227		if (d->type == -1)
228			continue;
229
230		seq_printf(s, "Type %d ", d->type);
231		seq_printf(s, "Num VQ %d ", d->num_vq);
232		seq_printf(s, "Feature Len %d\n", d->feature_len);
233		seq_printf(s, "Config Len %d ", d->config_len);
234		seq_printf(s, "Shutdown Status %d\n", d->status);
235
236		for (j = 0; j < d->num_vq; j++) {
237			vqconfig = mic_vq_config(d) + j;
238			seq_printf(s, "vqconfig[%d]: ", j);
239			seq_printf(s, "address 0x%llx ", vqconfig->address);
240			seq_printf(s, "num %d ", vqconfig->num);
241			seq_printf(s, "used address 0x%llx\n",
242				   vqconfig->used_address);
243		}
244
245		features = (__u32 *)mic_vq_features(d);
246		seq_printf(s, "Features: Host 0x%x ", features[0]);
247		seq_printf(s, "Guest 0x%x\n", features[1]);
248
249		config = mic_vq_configspace(d);
250		for (j = 0; j < d->config_len; j++)
251			seq_printf(s, "config[%d]=%d\n", j, config[j]);
252
253		seq_puts(s, "Device control:\n");
254		seq_printf(s, "Config Change %d ", dc->config_change);
255		seq_printf(s, "Vdev reset %d\n", dc->vdev_reset);
256		seq_printf(s, "Guest Ack %d ", dc->guest_ack);
257		seq_printf(s, "Host ack %d\n", dc->host_ack);
258		seq_printf(s, "Used address updated %d ",
259			   dc->used_address_updated);
260		seq_printf(s, "Vdev 0x%llx\n", dc->vdev);
261		seq_printf(s, "c2h doorbell %d ", dc->c2h_vdev_db);
262		seq_printf(s, "h2c doorbell %d\n", dc->h2c_vdev_db);
263	}
264
265	return 0;
266}
267
268static int mic_dp_debug_open(struct inode *inode, struct file *file)
269{
270	return single_open(file, mic_dp_show, inode->i_private);
271}
272
273static int mic_dp_debug_release(struct inode *inode, struct file *file)
274{
275	return single_release(inode, file);
276}
277
278static const struct file_operations dp_ops = {
279	.owner   = THIS_MODULE,
280	.open    = mic_dp_debug_open,
281	.read    = seq_read,
282	.llseek  = seq_lseek,
283	.release = mic_dp_debug_release
284};
285
286static int mic_vdev_info_show(struct seq_file *s, void *unused)
287{
288	struct mic_device *mdev = s->private;
289	struct list_head *pos, *tmp;
290	struct mic_vdev *mvdev;
291	int i, j;
292
293	mutex_lock(&mdev->mic_mutex);
294	list_for_each_safe(pos, tmp, &mdev->vdev_list) {
295		mvdev = list_entry(pos, struct mic_vdev, list);
296		seq_printf(s, "VDEV type %d state %s in %ld out %ld\n",
297			   mvdev->virtio_id,
298			   mic_vdevup(mvdev) ? "UP" : "DOWN",
299			   mvdev->in_bytes,
300			   mvdev->out_bytes);
301		for (i = 0; i < MIC_MAX_VRINGS; i++) {
302			struct vring_desc *desc;
303			struct vring_avail *avail;
304			struct vring_used *used;
305			struct mic_vringh *mvr = &mvdev->mvr[i];
306			struct vringh *vrh = &mvr->vrh;
307			int num = vrh->vring.num;
308			if (!num)
309				continue;
310			desc = vrh->vring.desc;
311			seq_printf(s, "vring i %d avail_idx %d",
312				   i, mvr->vring.info->avail_idx & (num - 1));
313			seq_printf(s, " vring i %d avail_idx %d\n",
314				   i, mvr->vring.info->avail_idx);
315			seq_printf(s, "vrh i %d weak_barriers %d",
316				   i, vrh->weak_barriers);
317			seq_printf(s, " last_avail_idx %d last_used_idx %d",
318				   vrh->last_avail_idx, vrh->last_used_idx);
319			seq_printf(s, " completed %d\n", vrh->completed);
320			for (j = 0; j < num; j++) {
321				seq_printf(s, "desc[%d] addr 0x%llx len %d",
322					   j, desc->addr, desc->len);
323				seq_printf(s, " flags 0x%x next %d\n",
324					   desc->flags, desc->next);
325				desc++;
326			}
327			avail = vrh->vring.avail;
328			seq_printf(s, "avail flags 0x%x idx %d\n",
329				   avail->flags, avail->idx & (num - 1));
330			seq_printf(s, "avail flags 0x%x idx %d\n",
331				   avail->flags, avail->idx);
332			for (j = 0; j < num; j++)
333				seq_printf(s, "avail ring[%d] %d\n",
334					   j, avail->ring[j]);
335			used = vrh->vring.used;
336			seq_printf(s, "used flags 0x%x idx %d\n",
337				   used->flags, used->idx & (num - 1));
338			seq_printf(s, "used flags 0x%x idx %d\n",
339				   used->flags, used->idx);
340			for (j = 0; j < num; j++)
341				seq_printf(s, "used ring[%d] id %d len %d\n",
342					   j, used->ring[j].id,
343					   used->ring[j].len);
344		}
345	}
346	mutex_unlock(&mdev->mic_mutex);
347
348	return 0;
349}
350
351static int mic_vdev_info_debug_open(struct inode *inode, struct file *file)
352{
353	return single_open(file, mic_vdev_info_show, inode->i_private);
354}
355
356static int mic_vdev_info_debug_release(struct inode *inode, struct file *file)
357{
358	return single_release(inode, file);
359}
360
361static const struct file_operations vdev_info_ops = {
362	.owner   = THIS_MODULE,
363	.open    = mic_vdev_info_debug_open,
364	.read    = seq_read,
365	.llseek  = seq_lseek,
366	.release = mic_vdev_info_debug_release
367};
368
369static int mic_msi_irq_info_show(struct seq_file *s, void *pos)
370{
371	struct mic_device *mdev  = s->private;
372	int reg;
373	int i, j;
374	u16 entry;
375	u16 vector;
376	struct pci_dev *pdev = container_of(mdev->sdev->parent,
377		struct pci_dev, dev);
378
379	if (pci_dev_msi_enabled(pdev)) {
380		for (i = 0; i < mdev->irq_info.num_vectors; i++) {
381			if (pdev->msix_enabled) {
382				entry = mdev->irq_info.msix_entries[i].entry;
383				vector = mdev->irq_info.msix_entries[i].vector;
384			} else {
385				entry = 0;
386				vector = pdev->irq;
387			}
388
389			reg = mdev->intr_ops->read_msi_to_src_map(mdev, entry);
390
391			seq_printf(s, "%s %-10d %s %-10d MXAR[%d]: %08X\n",
392				   "IRQ:", vector, "Entry:", entry, i, reg);
393
394			seq_printf(s, "%-10s", "offset:");
395			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
396				seq_printf(s, "%4d ", j);
397			seq_puts(s, "\n");
398
399
400			seq_printf(s, "%-10s", "count:");
401			for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
402				seq_printf(s, "%4d ",
403					   (mdev->irq_info.mic_msi_map[i] &
404					   BIT(j)) ? 1 : 0);
405			seq_puts(s, "\n\n");
406		}
407	} else {
408		seq_puts(s, "MSI/MSIx interrupts not enabled\n");
409	}
410
411	return 0;
412}
413
414static int mic_msi_irq_info_debug_open(struct inode *inode, struct file *file)
415{
416	return single_open(file, mic_msi_irq_info_show, inode->i_private);
417}
418
419static int
420mic_msi_irq_info_debug_release(struct inode *inode, struct file *file)
421{
422	return single_release(inode, file);
423}
424
425static const struct file_operations msi_irq_info_ops = {
426	.owner   = THIS_MODULE,
427	.open    = mic_msi_irq_info_debug_open,
428	.read    = seq_read,
429	.llseek  = seq_lseek,
430	.release = mic_msi_irq_info_debug_release
431};
432
433/**
434 * mic_create_debug_dir - Initialize MIC debugfs entries.
435 */
436void mic_create_debug_dir(struct mic_device *mdev)
437{
 
 
438	if (!mic_dbg)
439		return;
440
441	mdev->dbg_dir = debugfs_create_dir(dev_name(mdev->sdev), mic_dbg);
442	if (!mdev->dbg_dir)
443		return;
444
445	debugfs_create_file("log_buf", 0444, mdev->dbg_dir, mdev, &log_buf_ops);
446
447	debugfs_create_file("smpt", 0444, mdev->dbg_dir, mdev, &smpt_file_ops);
448
449	debugfs_create_file("soft_reset", 0444, mdev->dbg_dir, mdev,
450			    &soft_reset_ops);
451
452	debugfs_create_file("post_code", 0444, mdev->dbg_dir, mdev,
453			    &post_code_ops);
454
455	debugfs_create_file("dp", 0444, mdev->dbg_dir, mdev, &dp_ops);
456
457	debugfs_create_file("vdev_info", 0444, mdev->dbg_dir, mdev,
458			    &vdev_info_ops);
459
460	debugfs_create_file("msi_irq_info", 0444, mdev->dbg_dir, mdev,
461			    &msi_irq_info_ops);
462}
463
464/**
465 * mic_delete_debug_dir - Uninitialize MIC debugfs entries.
466 */
467void mic_delete_debug_dir(struct mic_device *mdev)
468{
469	if (!mdev->dbg_dir)
470		return;
471
472	debugfs_remove_recursive(mdev->dbg_dir);
473}
474
475/**
476 * mic_init_debugfs - Initialize global debugfs entry.
477 */
478void __init mic_init_debugfs(void)
479{
480	mic_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
481	if (!mic_dbg)
482		pr_err("can't create debugfs dir\n");
483}
484
485/**
486 * mic_exit_debugfs - Uninitialize global debugfs entry
487 */
488void mic_exit_debugfs(void)
489{
490	debugfs_remove(mic_dbg);
491}