Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1623868 > unrolled thread
| Started by | Christoph Hellwig <hch@lst.de> |
|---|---|
| First post | 2017-04-14 21:20 +0200 |
| Last post | 2017-04-27 19:00 +0200 |
| Articles | 9 — 6 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Christoph Hellwig <hch@lst.de> - 2017-04-14 21:20 +0200
RE: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it "Byczkowski, Jakub" <jakub.byczkowski@intel.com> - 2017-04-24 16:20 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Christoph Hellwig <hch@lst.de> - 2017-04-24 16:40 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Dennis Dalessandro <dennis.dalessandro@intel.com> - 2017-04-24 22:10 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Doug Ledford <dledford@redhat.com> - 2017-04-25 19:10 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Bjorn Helgaas <helgaas@kernel.org> - 2017-04-25 21:50 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Jeff Kirsher <jeffrey.t.kirsher@intel.com> - 2017-04-27 00:20 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Christoph Hellwig <hch@lst.de> - 2017-04-27 08:50 +0200
Re: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it Bjorn Helgaas <helgaas@kernel.org> - 2017-04-27 19:00 +0200
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2017-04-14 21:20 +0200 |
| Subject | [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it |
| Message-ID | <tweVc-50g-5@gated-at.bofh.it> |
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
drivers/infiniband/hw/hfi1/chip.c | 4 ++--
drivers/infiniband/hw/hfi1/hfi.h | 1 -
drivers/infiniband/hw/hfi1/pcie.c | 30 ------------------------------
3 files changed, 2 insertions(+), 33 deletions(-)
diff --git a/drivers/infiniband/hw/hfi1/chip.c b/drivers/infiniband/hw/hfi1/chip.c
index 121a4c920f1b..d037f72e4d96 100644
--- a/drivers/infiniband/hw/hfi1/chip.c
+++ b/drivers/infiniband/hw/hfi1/chip.c
@@ -13610,14 +13610,14 @@ static void init_chip(struct hfi1_devdata *dd)
dd_dev_info(dd, "Resetting CSRs with FLR\n");
/* do the FLR, the DC reset will remain */
- hfi1_pcie_flr(dd);
+ pcie_flr(dd->pcidev);
/* restore command and BARs */
restore_pci_variables(dd);
if (is_ax(dd)) {
dd_dev_info(dd, "Resetting CSRs with FLR\n");
- hfi1_pcie_flr(dd);
+ pcie_flr(dd->pcidev);
restore_pci_variables(dd);
}
} else {
diff --git a/drivers/infiniband/hw/hfi1/hfi.h b/drivers/infiniband/hw/hfi1/hfi.h
index 0808e3c3ba39..40d7559fa723 100644
--- a/drivers/infiniband/hw/hfi1/hfi.h
+++ b/drivers/infiniband/hw/hfi1/hfi.h
@@ -1764,7 +1764,6 @@ int hfi1_pcie_init(struct pci_dev *, const struct pci_device_id *);
void hfi1_pcie_cleanup(struct pci_dev *);
int hfi1_pcie_ddinit(struct hfi1_devdata *, struct pci_dev *);
void hfi1_pcie_ddcleanup(struct hfi1_devdata *);
-void hfi1_pcie_flr(struct hfi1_devdata *);
int pcie_speeds(struct hfi1_devdata *);
void request_msix(struct hfi1_devdata *, u32 *, struct hfi1_msix_entry *);
void hfi1_enable_intx(struct pci_dev *);
diff --git a/drivers/infiniband/hw/hfi1/pcie.c b/drivers/infiniband/hw/hfi1/pcie.c
index 0829fce06172..c81556e84831 100644
--- a/drivers/infiniband/hw/hfi1/pcie.c
+++ b/drivers/infiniband/hw/hfi1/pcie.c
@@ -240,36 +240,6 @@ void hfi1_pcie_ddcleanup(struct hfi1_devdata *dd)
iounmap(dd->piobase);
}
-/*
- * Do a Function Level Reset (FLR) on the device.
- * Based on static function drivers/pci/pci.c:pcie_flr().
- */
-void hfi1_pcie_flr(struct hfi1_devdata *dd)
-{
- int i;
- u16 status;
-
- /* no need to check for the capability - we know the device has it */
-
- /* wait for Transaction Pending bit to clear, at most a few ms */
- for (i = 0; i < 4; i++) {
- if (i)
- msleep((1 << (i - 1)) * 100);
-
- pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVSTA, &status);
- if (!(status & PCI_EXP_DEVSTA_TRPND))
- goto clear;
- }
-
- dd_dev_err(dd, "Transaction Pending bit is not clearing, proceeding with reset anyway\n");
-
-clear:
- pcie_capability_set_word(dd->pcidev, PCI_EXP_DEVCTL,
- PCI_EXP_DEVCTL_BCR_FLR);
- /* PCIe spec requires the function to be back within 100ms */
- msleep(100);
-}
-
static void msix_setup(struct hfi1_devdata *dd, int pos, u32 *msixcnt,
struct hfi1_msix_entry *hfi1_msix_entry)
{
--
2.11.0
[toc] | [next] | [standalone]
| From | "Byczkowski, Jakub" <jakub.byczkowski@intel.com> |
|---|---|
| Date | 2017-04-24 16:20 +0200 |
| Message-ID | <tzN0l-83T-13@gated-at.bofh.it> |
| In reply to | #1623868 |
Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com>
-----Original Message-----
From: linux-rdma-owner@vger.kernel.org [mailto:linux-rdma-owner@vger.kernel.org] On Behalf Of Christoph Hellwig
Sent: Friday, April 14, 2017 9:11 PM
To: Bjorn Helgaas <bhelgaas@google.com>; Cabiddu, Giovanni <giovanni.cabiddu@intel.com>; Benedetto, Salvatore <salvatore.benedetto@intel.com>; Marciniszyn, Mike <mike.marciniszyn@intel.com>; Dalessandro, Dennis <dennis.dalessandro@intel.com>; Derek Chickles <derek.chickles@caviumnetworks.com>; Satanand Burla <satananda.burla@caviumnetworks.com>; Felix Manlunas <felix.manlunas@caviumnetworks.com>; Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>; Kirsher, Jeffrey T <jeffrey.t.kirsher@intel.com>
Cc: linux-pci@vger.kernel.org; qat-linux <qat-linux@intel.com>; linux-crypto@vger.kernel.org; linux-rdma@vger.kernel.org; netdev@vger.kernel.org; linux-kernel@vger.kernel.org
Subject: [PATCH 5/7] IB/hfi1: use pcie_flr instead of duplicating it
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
drivers/infiniband/hw/hfi1/chip.c | 4 ++-- drivers/infiniband/hw/hfi1/hfi.h | 1 - drivers/infiniband/hw/hfi1/pcie.c | 30 ------------------------------
3 files changed, 2 insertions(+), 33 deletions(-)
diff --git a/drivers/infiniband/hw/hfi1/chip.c b/drivers/infiniband/hw/hfi1/chip.c
index 121a4c920f1b..d037f72e4d96 100644
--- a/drivers/infiniband/hw/hfi1/chip.c
+++ b/drivers/infiniband/hw/hfi1/chip.c
@@ -13610,14 +13610,14 @@ static void init_chip(struct hfi1_devdata *dd)
dd_dev_info(dd, "Resetting CSRs with FLR\n");
/* do the FLR, the DC reset will remain */
- hfi1_pcie_flr(dd);
+ pcie_flr(dd->pcidev);
/* restore command and BARs */
restore_pci_variables(dd);
if (is_ax(dd)) {
dd_dev_info(dd, "Resetting CSRs with FLR\n");
- hfi1_pcie_flr(dd);
+ pcie_flr(dd->pcidev);
restore_pci_variables(dd);
}
} else {
diff --git a/drivers/infiniband/hw/hfi1/hfi.h b/drivers/infiniband/hw/hfi1/hfi.h
index 0808e3c3ba39..40d7559fa723 100644
--- a/drivers/infiniband/hw/hfi1/hfi.h
+++ b/drivers/infiniband/hw/hfi1/hfi.h
@@ -1764,7 +1764,6 @@ int hfi1_pcie_init(struct pci_dev *, const struct pci_device_id *); void hfi1_pcie_cleanup(struct pci_dev *); int hfi1_pcie_ddinit(struct hfi1_devdata *, struct pci_dev *); void hfi1_pcie_ddcleanup(struct hfi1_devdata *); -void hfi1_pcie_flr(struct hfi1_devdata *); int pcie_speeds(struct hfi1_devdata *); void request_msix(struct hfi1_devdata *, u32 *, struct hfi1_msix_entry *); void hfi1_enable_intx(struct pci_dev *); diff --git a/drivers/infiniband/hw/hfi1/pcie.c b/drivers/infiniband/hw/hfi1/pcie.c
index 0829fce06172..c81556e84831 100644
--- a/drivers/infiniband/hw/hfi1/pcie.c
+++ b/drivers/infiniband/hw/hfi1/pcie.c
@@ -240,36 +240,6 @@ void hfi1_pcie_ddcleanup(struct hfi1_devdata *dd)
iounmap(dd->piobase);
}
-/*
- * Do a Function Level Reset (FLR) on the device.
- * Based on static function drivers/pci/pci.c:pcie_flr().
- */
-void hfi1_pcie_flr(struct hfi1_devdata *dd) -{
- int i;
- u16 status;
-
- /* no need to check for the capability - we know the device has it */
-
- /* wait for Transaction Pending bit to clear, at most a few ms */
- for (i = 0; i < 4; i++) {
- if (i)
- msleep((1 << (i - 1)) * 100);
-
- pcie_capability_read_word(dd->pcidev, PCI_EXP_DEVSTA, &status);
- if (!(status & PCI_EXP_DEVSTA_TRPND))
- goto clear;
- }
-
- dd_dev_err(dd, "Transaction Pending bit is not clearing, proceeding with reset anyway\n");
-
-clear:
- pcie_capability_set_word(dd->pcidev, PCI_EXP_DEVCTL,
- PCI_EXP_DEVCTL_BCR_FLR);
- /* PCIe spec requires the function to be back within 100ms */
- msleep(100);
-}
-
static void msix_setup(struct hfi1_devdata *dd, int pos, u32 *msixcnt,
struct hfi1_msix_entry *hfi1_msix_entry) {
--
2.11.0
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
--------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek
przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by
others is strictly prohibited.
[toc] | [prev] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2017-04-24 16:40 +0200 |
| Message-ID | <tzNjH-8an-1@gated-at.bofh.it> |
| In reply to | #1629609 |
On Mon, Apr 24, 2017 at 02:16:31PM +0000, Byczkowski, Jakub wrote: > Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com> Are you (and Doug) ok with queueing this up in the PCI tree?
[toc] | [prev] | [next] | [standalone]
| From | Dennis Dalessandro <dennis.dalessandro@intel.com> |
|---|---|
| Date | 2017-04-24 22:10 +0200 |
| Message-ID | <tzSt4-33H-19@gated-at.bofh.it> |
| In reply to | #1629643 |
On 04/24/2017 10:35 AM, Christoph Hellwig wrote: > On Mon, Apr 24, 2017 at 02:16:31PM +0000, Byczkowski, Jakub wrote: >> Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com> > > Are you (and Doug) ok with queueing this up in the PCI tree? We are fine however Doug wants to handle it. -Denny
[toc] | [prev] | [next] | [standalone]
| From | Doug Ledford <dledford@redhat.com> |
|---|---|
| Date | 2017-04-25 19:10 +0200 |
| Message-ID | <tAc8p-7wp-5@gated-at.bofh.it> |
| In reply to | #1629643 |
On Mon, 2017-04-24 at 16:35 +0200, Christoph Hellwig wrote: > On Mon, Apr 24, 2017 at 02:16:31PM +0000, Byczkowski, Jakub wrote: > > > > Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com> > > Are you (and Doug) ok with queueing this up in the PCI tree? I'm fine with that. Feel free to add my Acked-by to the hfi1 patch. -- Doug Ledford <dledford@redhat.com> GPG KeyID: B826A3330E572FDD Key fingerprint = AE6B 1BDA 122B 23B4 265B 1274 B826 A333 0E57 2FDD
[toc] | [prev] | [next] | [standalone]
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Date | 2017-04-25 21:50 +0200 |
| Message-ID | <tAeDg-up-21@gated-at.bofh.it> |
| In reply to | #1629643 |
On Mon, Apr 24, 2017 at 04:35:07PM +0200, Christoph Hellwig wrote: > On Mon, Apr 24, 2017 at 02:16:31PM +0000, Byczkowski, Jakub wrote: > > Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com> > > Are you (and Doug) ok with queueing this up in the PCI tree? Applied this with Jakub's tested-by and Doug's ack to pci/virtualization for v4.12. This still leaves these: [PATCH 4/7] ixgbe: use pcie_flr instead of duplicating it [PATCH 6/7] crypto: qat: use pcie_flr instead of duplicating it [PATCH 7/7] liquidio: use pcie_flr instead of duplicating it I haven't seen any response to 4 and 6. Felix reported an unused variable in 7. Let me know if you'd like me to do anything with these. Bjorn
[toc] | [prev] | [next] | [standalone]
| From | Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
|---|---|
| Date | 2017-04-27 00:20 +0200 |
| Message-ID | <tADrY-7T-7@gated-at.bofh.it> |
| In reply to | #1630938 |
[Multipart message — attachments visible in raw view] — view raw
On Tue, 2017-04-25 at 14:39 -0500, Bjorn Helgaas wrote: > On Mon, Apr 24, 2017 at 04:35:07PM +0200, Christoph Hellwig wrote: > > On Mon, Apr 24, 2017 at 02:16:31PM +0000, Byczkowski, Jakub wrote: > > > Tested-by: Jakub Byczkowski <jakub.byczkowski@intel.com> > > > > Are you (and Doug) ok with queueing this up in the PCI tree? > > Applied this with Jakub's tested-by and Doug's ack to pci/virtualization > for v4.12. > > This still leaves these: > > [PATCH 4/7] ixgbe: use pcie_flr instead of duplicating it > [PATCH 6/7] crypto: qat: use pcie_flr instead of duplicating it > [PATCH 7/7] liquidio: use pcie_flr instead of duplicating it > > I haven't seen any response to 4 and 6. Felix reported an unused > variable in 7. Let me know if you'd like me to do anything with > these. Just provided my ACK for ixgbe patch.
[toc] | [prev] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2017-04-27 08:50 +0200 |
| Message-ID | <tALpv-5dO-13@gated-at.bofh.it> |
| In reply to | #1630938 |
On Tue, Apr 25, 2017 at 02:39:55PM -0500, Bjorn Helgaas wrote: > This still leaves these: > > [PATCH 4/7] ixgbe: use pcie_flr instead of duplicating it > [PATCH 6/7] crypto: qat: use pcie_flr instead of duplicating it > [PATCH 7/7] liquidio: use pcie_flr instead of duplicating it > > I haven't seen any response to 4 and 6. Felix reported an unused > variable in 7. Let me know if you'd like me to do anything with > these. Now that Jeff ACKed 4 it might be worth to add it to the pci tree last minute. I'll resend liquidio and qat to the respective maintainers for the next merge window.
[toc] | [prev] | [next] | [standalone]
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Date | 2017-04-27 19:00 +0200 |
| Message-ID | <tAUVP-3hr-7@gated-at.bofh.it> |
| In reply to | #1631899 |
On Thu, Apr 27, 2017 at 08:47:58AM +0200, Christoph Hellwig wrote: > On Tue, Apr 25, 2017 at 02:39:55PM -0500, Bjorn Helgaas wrote: > > This still leaves these: > > > > [PATCH 4/7] ixgbe: use pcie_flr instead of duplicating it > > [PATCH 6/7] crypto: qat: use pcie_flr instead of duplicating it > > [PATCH 7/7] liquidio: use pcie_flr instead of duplicating it > > > > I haven't seen any response to 4 and 6. Felix reported an unused > > variable in 7. Let me know if you'd like me to do anything with > > these. > > Now that Jeff ACKed 4 it might be worth to add it to the pci tree last > minute. I'll resend liquidio and qat to the respective maintainers for > the next merge window. I applied 4 with Jeff's ack to pci/virtualization for v4.12, thanks!
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web