From: "Jiang, Dave" <dave.jiang@intel.com>
To: "Allen.Hubbe@emc.com" <Allen.Hubbe@emc.com>,
"linux-ntb@googlegroups.com" <linux-ntb@googlegroups.com>
Cc: "jdmason@kudzu.us" <jdmason@kudzu.us>
Subject: Re: [PATCH 1/2] NTB: ntb_hw_intel: show BAR size in debugfs info
Date: Fri, 22 Jul 2016 16:19:32 +0000 [thread overview]
Message-ID: <1469204350.52273.3.camel@intel.com> (raw)
In-Reply-To: <6a5cd51b82d6d20bfbc129f4d83264d93adbf78c.1469194609.git.Allen.Hubbe@emc.com>
On Fri, 2016-07-22 at 09:38 -0400, Allen Hubbe wrote:
> It will be useful to know the hardware configured BAR size to
> diagnose
> issues with NTB memory windows.
>
> Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com>
Acked-by: Dave Jiang <dave.jiang@intel.com>
> ---
> drivers/ntb/hw/intel/ntb_hw_intel.c | 39
> ++++++++++++++++++++++++++++++++++++-
> 1 file changed, 38 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/ntb/hw/intel/ntb_hw_intel.c
> b/drivers/ntb/hw/intel/ntb_hw_intel.c
> index 40d04ef5da9e..5efd03705e5c 100644
> --- a/drivers/ntb/hw/intel/ntb_hw_intel.c
> +++ b/drivers/ntb/hw/intel/ntb_hw_intel.c
> @@ -551,13 +551,15 @@ static ssize_t ndev_debugfs_read(struct file
> *filp, char __user *ubuf,
> size_t count, loff_t *offp)
> {
> struct intel_ntb_dev *ndev;
> + struct pci_dev *pdev;
> void __iomem *mmio;
> char *buf;
> size_t buf_size;
> ssize_t ret, off;
> - union { u64 v64; u32 v32; u16 v16; } u;
> + union { u64 v64; u32 v32; u16 v16; u8 v8; } u;
>
> ndev = filp->private_data;
> + pdev = ndev_pdev(ndev);
> mmio = ndev->self_mmio;
>
> buf_size = min(count, 0x800ul);
> @@ -632,6 +634,41 @@ static ssize_t ndev_debugfs_read(struct file
> *filp, char __user *ubuf,
> "Doorbell Bell -\t\t%#llx\n", u.v64);
>
> off += scnprintf(buf + off, buf_size - off,
> + "\nNTB Window Size:\n");
> +
> + pci_read_config_byte(pdev, XEON_PBAR23SZ_OFFSET, &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "PBAR23SZ %hhu\n", u.v8);
> + if (!ndev->bar4_split) {
> + pci_read_config_byte(pdev, XEON_PBAR45SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "PBAR45SZ %hhu\n", u.v8);
> + } else {
> + pci_read_config_byte(pdev, XEON_PBAR4SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "PBAR4SZ %hhu\n", u.v8);
> + pci_read_config_byte(pdev, XEON_PBAR5SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "PBAR5SZ %hhu\n", u.v8);
> + }
> +
> + pci_read_config_byte(pdev, XEON_SBAR23SZ_OFFSET, &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "SBAR23SZ %hhu\n", u.v8);
> + if (!ndev->bar4_split) {
> + pci_read_config_byte(pdev, XEON_SBAR45SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "SBAR45SZ %hhu\n", u.v8);
> + } else {
> + pci_read_config_byte(pdev, XEON_SBAR4SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "SBAR4SZ %hhu\n", u.v8);
> + pci_read_config_byte(pdev, XEON_SBAR5SZ_OFFSET,
> &u.v8);
> + off += scnprintf(buf + off, buf_size - off,
> + "SBAR5SZ %hhu\n", u.v8);
> + }
> +
> + off += scnprintf(buf + off, buf_size - off,
> "\nNTB Incoming XLAT:\n");
>
> u.v64 = ioread64(mmio + bar2_off(ndev->xlat_reg->bar2_xlat,
> 2));
next prev parent reply other threads:[~2016-07-22 16:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-22 13:38 [PATCH 1/2] NTB: ntb_hw_intel: show BAR size in debugfs info Allen Hubbe
2016-07-22 13:38 ` [PATCH 2/2] NTB: ntb_hw_intel: use local variable pdev Allen Hubbe
2016-07-22 16:20 ` Jiang, Dave
2016-07-22 16:19 ` Jiang, Dave [this message]
2016-08-05 14:35 ` [PATCH 1/2] NTB: ntb_hw_intel: show BAR size in debugfs info Jon Mason
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1469204350.52273.3.camel@intel.com \
--to=dave.jiang@intel.com \
--cc=Allen.Hubbe@emc.com \
--cc=jdmason@kudzu.us \
--cc=linux-ntb@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.