mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 22:37:01 +07:00
f632a8170a
Here is the "big" driver core and debugfs changes for 5.3-rc1 It's a lot of different patches, all across the tree due to some api changes and lots of debugfs cleanups. Because of this, there is going to be some merge issues with your tree at the moment, I'll follow up with the expected resolutions to make it easier for you. Other than the debugfs cleanups, in this set of changes we have: - bus iteration function cleanups (will cause build warnings with s390 and coresight drivers in your tree) - scripts/get_abi.pl tool to display and parse Documentation/ABI entries in a simple way - cleanups to Documenatation/ABI/ entries to make them parse easier due to typos and other minor things - default_attrs use for some ktype users - driver model documentation file conversions to .rst - compressed firmware file loading - deferred probe fixes All of these have been in linux-next for a while, with a bunch of merge issues that Stephen has been patient with me for. Other than the merge issues, functionality is working properly in linux-next :) Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCXSgpnQ8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ykcwgCfS30OR4JmwZydWGJ7zK/cHqk+KjsAnjOxjC1K LpRyb3zX29oChFaZkc5a =XrEZ -----END PGP SIGNATURE----- Merge tag 'driver-core-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core Pull driver core and debugfs updates from Greg KH: "Here is the "big" driver core and debugfs changes for 5.3-rc1 It's a lot of different patches, all across the tree due to some api changes and lots of debugfs cleanups. Other than the debugfs cleanups, in this set of changes we have: - bus iteration function cleanups - scripts/get_abi.pl tool to display and parse Documentation/ABI entries in a simple way - cleanups to Documenatation/ABI/ entries to make them parse easier due to typos and other minor things - default_attrs use for some ktype users - driver model documentation file conversions to .rst - compressed firmware file loading - deferred probe fixes All of these have been in linux-next for a while, with a bunch of merge issues that Stephen has been patient with me for" * tag 'driver-core-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (102 commits) debugfs: make error message a bit more verbose orangefs: fix build warning from debugfs cleanup patch ubifs: fix build warning after debugfs cleanup patch driver: core: Allow subsystems to continue deferring probe drivers: base: cacheinfo: Ensure cpu hotplug work is done before Intel RDT arch_topology: Remove error messages on out-of-memory conditions lib: notifier-error-inject: no need to check return value of debugfs_create functions swiotlb: no need to check return value of debugfs_create functions ceph: no need to check return value of debugfs_create functions sunrpc: no need to check return value of debugfs_create functions ubifs: no need to check return value of debugfs_create functions orangefs: no need to check return value of debugfs_create functions nfsd: no need to check return value of debugfs_create functions lib: 842: no need to check return value of debugfs_create functions debugfs: provide pr_fmt() macro debugfs: log errors when something goes wrong drivers: s390/cio: Fix compilation warning about const qualifiers drivers: Add generic helper to match by of_node driver_find_device: Unify the match function with class_find_device() bus_find_device: Unify the match callback with class_find_device ...
153 lines
3.5 KiB
C
153 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Intel MIC Platform Software Stack (MPSS)
|
|
*
|
|
* Copyright(c) 2013 Intel Corporation.
|
|
*
|
|
* Intel MIC Host driver.
|
|
*/
|
|
#include <linux/debugfs.h>
|
|
#include <linux/pci.h>
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/mic_common.h>
|
|
#include "../common/mic_dev.h"
|
|
#include "mic_device.h"
|
|
#include "mic_smpt.h"
|
|
|
|
/* Debugfs parent dir */
|
|
static struct dentry *mic_dbg;
|
|
|
|
static int mic_smpt_show(struct seq_file *s, void *pos)
|
|
{
|
|
int i;
|
|
struct mic_device *mdev = s->private;
|
|
unsigned long flags;
|
|
|
|
seq_printf(s, "MIC %-2d |%-10s| %-14s %-10s\n",
|
|
mdev->id, "SMPT entry", "SW DMA addr", "RefCount");
|
|
seq_puts(s, "====================================================\n");
|
|
|
|
if (mdev->smpt) {
|
|
struct mic_smpt_info *smpt_info = mdev->smpt;
|
|
spin_lock_irqsave(&smpt_info->smpt_lock, flags);
|
|
for (i = 0; i < smpt_info->info.num_reg; i++) {
|
|
seq_printf(s, "%9s|%-10d| %-#14llx %-10lld\n",
|
|
" ", i, smpt_info->entry[i].dma_addr,
|
|
smpt_info->entry[i].ref_count);
|
|
}
|
|
spin_unlock_irqrestore(&smpt_info->smpt_lock, flags);
|
|
}
|
|
seq_puts(s, "====================================================\n");
|
|
return 0;
|
|
}
|
|
|
|
DEFINE_SHOW_ATTRIBUTE(mic_smpt);
|
|
|
|
static int mic_post_code_show(struct seq_file *s, void *pos)
|
|
{
|
|
struct mic_device *mdev = s->private;
|
|
u32 reg = mdev->ops->get_postcode(mdev);
|
|
|
|
seq_printf(s, "%c%c", reg & 0xff, (reg >> 8) & 0xff);
|
|
return 0;
|
|
}
|
|
|
|
DEFINE_SHOW_ATTRIBUTE(mic_post_code);
|
|
|
|
static int mic_msi_irq_info_show(struct seq_file *s, void *pos)
|
|
{
|
|
struct mic_device *mdev = s->private;
|
|
int reg;
|
|
int i, j;
|
|
u16 entry;
|
|
u16 vector;
|
|
struct pci_dev *pdev = mdev->pdev;
|
|
|
|
if (pci_dev_msi_enabled(pdev)) {
|
|
for (i = 0; i < mdev->irq_info.num_vectors; i++) {
|
|
if (pdev->msix_enabled) {
|
|
entry = mdev->irq_info.msix_entries[i].entry;
|
|
vector = mdev->irq_info.msix_entries[i].vector;
|
|
} else {
|
|
entry = 0;
|
|
vector = pdev->irq;
|
|
}
|
|
|
|
reg = mdev->intr_ops->read_msi_to_src_map(mdev, entry);
|
|
|
|
seq_printf(s, "%s %-10d %s %-10d MXAR[%d]: %08X\n",
|
|
"IRQ:", vector, "Entry:", entry, i, reg);
|
|
|
|
seq_printf(s, "%-10s", "offset:");
|
|
for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
|
|
seq_printf(s, "%4d ", j);
|
|
seq_puts(s, "\n");
|
|
|
|
|
|
seq_printf(s, "%-10s", "count:");
|
|
for (j = (MIC_NUM_OFFSETS - 1); j >= 0; j--)
|
|
seq_printf(s, "%4d ",
|
|
(mdev->irq_info.mic_msi_map[i] &
|
|
BIT(j)) ? 1 : 0);
|
|
seq_puts(s, "\n\n");
|
|
}
|
|
} else {
|
|
seq_puts(s, "MSI/MSIx interrupts not enabled\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
DEFINE_SHOW_ATTRIBUTE(mic_msi_irq_info);
|
|
|
|
/**
|
|
* mic_create_debug_dir - Initialize MIC debugfs entries.
|
|
*/
|
|
void mic_create_debug_dir(struct mic_device *mdev)
|
|
{
|
|
char name[16];
|
|
|
|
if (!mic_dbg)
|
|
return;
|
|
|
|
scnprintf(name, sizeof(name), "mic%d", mdev->id);
|
|
mdev->dbg_dir = debugfs_create_dir(name, mic_dbg);
|
|
|
|
debugfs_create_file("smpt", 0444, mdev->dbg_dir, mdev,
|
|
&mic_smpt_fops);
|
|
|
|
debugfs_create_file("post_code", 0444, mdev->dbg_dir, mdev,
|
|
&mic_post_code_fops);
|
|
|
|
debugfs_create_file("msi_irq_info", 0444, mdev->dbg_dir, mdev,
|
|
&mic_msi_irq_info_fops);
|
|
}
|
|
|
|
/**
|
|
* mic_delete_debug_dir - Uninitialize MIC debugfs entries.
|
|
*/
|
|
void mic_delete_debug_dir(struct mic_device *mdev)
|
|
{
|
|
if (!mdev->dbg_dir)
|
|
return;
|
|
|
|
debugfs_remove_recursive(mdev->dbg_dir);
|
|
}
|
|
|
|
/**
|
|
* mic_init_debugfs - Initialize global debugfs entry.
|
|
*/
|
|
void __init mic_init_debugfs(void)
|
|
{
|
|
mic_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
|
|
}
|
|
|
|
/**
|
|
* mic_exit_debugfs - Uninitialize global debugfs entry
|
|
*/
|
|
void mic_exit_debugfs(void)
|
|
{
|
|
debugfs_remove(mic_dbg);
|
|
}
|