diff options
| author | Linus Torvalds <[email protected]> | 2020-06-12 19:19:13 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2020-06-12 19:19:13 +0000 |
| commit | 8f02f363f76f99f08117336cfac7f24c76b25be3 (patch) | |
| tree | b32e764508b3eb8e3c90e6deaacf980792dea854 /drivers/iommu/amd/debugfs.c | |
| parent | Merge tag 'printk-for-5.8-kdb-nmi' of git://git.kernel.org/pub/scm/linux/kern... (diff) | |
| parent | iommu/vt-d: Move Intel IOMMU driver into subdirectory (diff) | |
| download | kernel-8f02f363f76f99f08117336cfac7f24c76b25be3.tar.gz kernel-8f02f363f76f99f08117336cfac7f24c76b25be3.zip | |
Merge tag 'iommu-drivers-move-v5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu
Pull iommu driver directory structure cleanup from Joerg Roedel:
"Move the Intel and AMD IOMMU drivers into their own subdirectory.
Both drivers consist of several files by now and giving them their own
directory unclutters the IOMMU top-level directory a bit"
* tag 'iommu-drivers-move-v5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu:
iommu/vt-d: Move Intel IOMMU driver into subdirectory
iommu/amd: Move AMD IOMMU driver into subdirectory
Diffstat (limited to 'drivers/iommu/amd/debugfs.c')
| -rw-r--r-- | drivers/iommu/amd/debugfs.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/iommu/amd/debugfs.c b/drivers/iommu/amd/debugfs.c new file mode 100644 index 000000000000..545372fcc72f --- /dev/null +++ b/drivers/iommu/amd/debugfs.c @@ -0,0 +1,32 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * AMD IOMMU driver + * + * Copyright (C) 2018 Advanced Micro Devices, Inc. + * + * Author: Gary R Hook <[email protected]> + */ + +#include <linux/debugfs.h> +#include <linux/pci.h> + +#include "amd_iommu.h" + +static struct dentry *amd_iommu_debugfs; +static DEFINE_MUTEX(amd_iommu_debugfs_lock); + +#define MAX_NAME_LEN 20 + +void amd_iommu_debugfs_setup(struct amd_iommu *iommu) +{ + char name[MAX_NAME_LEN + 1]; + + mutex_lock(&amd_iommu_debugfs_lock); + if (!amd_iommu_debugfs) + amd_iommu_debugfs = debugfs_create_dir("amd", + iommu_debugfs_dir); + mutex_unlock(&amd_iommu_debugfs_lock); + + snprintf(name, MAX_NAME_LEN, "iommu%02d", iommu->index); + iommu->debugfs = debugfs_create_dir(name, amd_iommu_debugfs); +} |
