linux-nvme.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines
@ 2013-02-28 19:49 Chayan Biswas
  2013-03-01 15:12 ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Chayan Biswas @ 2013-02-28 19:49 UTC (permalink / raw)


We set the DMA mask to 32 bit if the system is a 32 bit system. We also
try to set to 32 bit DMA if setting the 64 bit DMA fails, and clean up
if both fails.

Signed-off-by: Chayan Biswas <Chayan.Biswas at sandisk.com>
---
 drivers/block/nvme.c |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c
index 993c014..4b706b5 100644
--- a/drivers/block/nvme.c
+++ b/drivers/block/nvme.c
@@ -42,6 +42,7 @@

 #include <asm-generic/io-64-nonatomic-lo-hi.h>

+#define IS_DMA64               (sizeof(dma_addr_t) == 8)
 #define NVME_Q_DEPTH 1024
 #define SQ_SIZE(depth)         (depth * sizeof(struct nvme_command))
 #define CQ_SIZE(depth)         (depth * sizeof(struct nvme_completion))
@@ -1662,8 +1663,21 @@ static int __devinit nvme_probe(struct pci_dev *pdev,
        INIT_LIST_HEAD(&dev->namespaces);
        dev->pci_dev = pdev;
        pci_set_drvdata(pdev, dev);
-       dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
-       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
+       if (IS_DMA64) {
+               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) != 0) {
+                       if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
+                               goto fail_set_dma_mask;
+
+                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
+               } else {
+                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
+               }
+       } else {
+               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
+                       goto fail_set_dma_mask;
+
+               dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
+       }
        result = nvme_set_instance(dev);
        if (result)
                goto disable;
@@ -1705,6 +1719,7 @@ static int __devinit nvme_probe(struct pci_dev *pdev,
        iounmap(dev->bar);
  disable_msix:
        pci_disable_msix(pdev);
+ fail_set_dma_mask:
        nvme_release_instance(dev);
        nvme_release_prp_pools(dev);
  disable:
--
1.7.1


________________________________

PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines
  2013-02-28 19:49 [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines Chayan Biswas
@ 2013-03-01 15:12 ` Matthew Wilcox
  2013-03-01 22:05   ` Chayan Biswas
  0 siblings, 1 reply; 5+ messages in thread
From: Matthew Wilcox @ 2013-03-01 15:12 UTC (permalink / raw)


On Thu, Feb 28, 2013@07:49:13PM +0000, Chayan Biswas wrote:
> We set the DMA mask to 32 bit if the system is a 32 bit system. We also
> try to set to 32 bit DMA if setting the 64 bit DMA fails, and clean up
> if both fails.

What problem are you solving here?  If the system is 32-bit, setting the
DMA mask to 64-bit should be harmless.  The DMA mask tells the system
what the device is capable of -- this doesn't change if the system
happens to be 32-bit.

> Signed-off-by: Chayan Biswas <Chayan.Biswas at sandisk.com>
> ---
>  drivers/block/nvme.c |   19 +++++++++++++++++--
>  1 files changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c
> index 993c014..4b706b5 100644
> --- a/drivers/block/nvme.c
> +++ b/drivers/block/nvme.c
> @@ -42,6 +42,7 @@
> 
>  #include <asm-generic/io-64-nonatomic-lo-hi.h>
> 
> +#define IS_DMA64               (sizeof(dma_addr_t) == 8)
>  #define NVME_Q_DEPTH 1024
>  #define SQ_SIZE(depth)         (depth * sizeof(struct nvme_command))
>  #define CQ_SIZE(depth)         (depth * sizeof(struct nvme_completion))
> @@ -1662,8 +1663,21 @@ static int __devinit nvme_probe(struct pci_dev *pdev,
>         INIT_LIST_HEAD(&dev->namespaces);
>         dev->pci_dev = pdev;
>         pci_set_drvdata(pdev, dev);
> -       dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
> -       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
> +       if (IS_DMA64) {
> +               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) != 0) {
> +                       if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
> +                               goto fail_set_dma_mask;
> +
> +                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
> +               } else {
> +                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
> +               }
> +       } else {
> +               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
> +                       goto fail_set_dma_mask;
> +
> +               dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
> +       }
>         result = nvme_set_instance(dev);
>         if (result)
>                 goto disable;
> @@ -1705,6 +1719,7 @@ static int __devinit nvme_probe(struct pci_dev *pdev,
>         iounmap(dev->bar);
>   disable_msix:
>         pci_disable_msix(pdev);
> + fail_set_dma_mask:
>         nvme_release_instance(dev);
>         nvme_release_prp_pools(dev);
>   disable:
> --
> 1.7.1
> 
> 
> ________________________________
> 
> PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).
> 
> 
> _______________________________________________
> Linux-nvme mailing list
> Linux-nvme at lists.infradead.org
> http://merlin.infradead.org/mailman/listinfo/linux-nvme

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines
  2013-03-01 15:12 ` Matthew Wilcox
@ 2013-03-01 22:05   ` Chayan Biswas
  2013-03-04 12:46     ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Chayan Biswas @ 2013-03-01 22:05 UTC (permalink / raw)


> What problem are you solving here?  If the system is 32-bit, setting the
> DMA mask to 64-bit should be harmless.  The DMA mask tells the system
> what the device is capable of -- this doesn't change if the system
> happens to be 32-bit.

[CB] The current code does not check for the return value from dma_set_mask() which can fail. Checking for the return value and falling back to 32 bit DMA is consistent with most of the device drivers currently in the kernel using this function and setting 64 bit DMA. Am I missing something here?

Maybe checking for the sizeof(dma_addr_t)  is superfluous and we can remove.

Without this patch we have hit system hang on a 32 bit OS earlier. Adding this patch resolved the issue.





> > Signed-off-by: Chayan Biswas <Chayan.Biswas at sandisk.com>
> > ---
> >  drivers/block/nvme.c |   19 +++++++++++++++++--
> >  1 files changed, 17 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c
> > index 993c014..4b706b5 100644
> > --- a/drivers/block/nvme.c
> > +++ b/drivers/block/nvme.c
> > @@ -42,6 +42,7 @@
> >
> >  #include <asm-generic/io-64-nonatomic-lo-hi.h>
> >
> > +#define IS_DMA64               (sizeof(dma_addr_t) == 8)
> >  #define NVME_Q_DEPTH 1024
> >  #define SQ_SIZE(depth)         (depth * sizeof(struct nvme_command))
> >  #define CQ_SIZE(depth)         (depth * sizeof(struct nvme_completion))
> > @@ -1662,8 +1663,21 @@ static int __devinit nvme_probe(struct pci_dev
> *pdev,
> >         INIT_LIST_HEAD(&dev->namespaces);
> >         dev->pci_dev = pdev;
> >         pci_set_drvdata(pdev, dev);
> > -       dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
> > -       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
> > +       if (IS_DMA64) {
> > +               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) != 0) {
> > +                       if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
> > +                               goto fail_set_dma_mask;
> > +
> > +                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
> > +               } else {
> > +                       dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
> > +               }
> > +       } else {
> > +               if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)) != 0)
> > +                       goto fail_set_dma_mask;
> > +
> > +               dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
> > +       }
> >         result = nvme_set_instance(dev);
> >         if (result)
> >                 goto disable;
> > @@ -1705,6 +1719,7 @@ static int __devinit nvme_probe(struct pci_dev
> *pdev,
> >         iounmap(dev->bar);
> >   disable_msix:
> >         pci_disable_msix(pdev);
> > + fail_set_dma_mask:
> >         nvme_release_instance(dev);
> >         nvme_release_prp_pools(dev);
> >   disable:
> > --
> > 1.7.1
> >
> >
> > ________________________________
> >
> > PLEASE NOTE: The information contained in this electronic mail message is
> intended only for the use of the designated recipient(s) named above. If the
> reader of this message is not the intended recipient, you are hereby notified
> that you have received this message in error and that any review,
> dissemination, distribution, or copying of this message is strictly prohibited. If
> you have received this communication in error, please notify the sender by
> telephone or e-mail (as shown above) immediately and destroy any and all
> copies of this message in your possession (whether hard copies or
> electronically stored copies).
> >
> >
> > _______________________________________________
> > Linux-nvme mailing list
> > Linux-nvme at lists.infradead.org
> > http://merlin.infradead.org/mailman/listinfo/linux-nvme

________________________________

PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines
  2013-03-01 22:05   ` Chayan Biswas
@ 2013-03-04 12:46     ` Matthew Wilcox
  2013-03-05 21:57       ` Chayan Biswas
  0 siblings, 1 reply; 5+ messages in thread
From: Matthew Wilcox @ 2013-03-04 12:46 UTC (permalink / raw)


On Fri, Mar 01, 2013@10:05:25PM +0000, Chayan Biswas wrote:
> > What problem are you solving here?  If the system is 32-bit, setting the
> > DMA mask to 64-bit should be harmless.  The DMA mask tells the system
> > what the device is capable of -- this doesn't change if the system
> > happens to be 32-bit.
> 
> [CB] The current code does not check for the return value from dma_set_mask() which can fail. Checking for the return value and falling back to 32 bit DMA is consistent with most of the device drivers currently in the kernel using this function and setting 64 bit DMA. Am I missing something here?

I agree that dma_set_mask() can fail, but the only failure mode I
know of is when the architecture code can't handle masks that _small_.
Since we're setting it to the maximum value, I wasn't aware of a way it
could fail.

> Maybe checking for the sizeof(dma_addr_t)  is superfluous and we can remove.
> 
> Without this patch we have hit system hang on a 32 bit OS earlier. Adding this patch resolved the issue.

Was it 32-bit x86, or some other architecture?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines
  2013-03-04 12:46     ` Matthew Wilcox
@ 2013-03-05 21:57       ` Chayan Biswas
  0 siblings, 0 replies; 5+ messages in thread
From: Chayan Biswas @ 2013-03-05 21:57 UTC (permalink / raw)


> > [CB] The current code does not check for the return value from
> dma_set_mask() which can fail. Checking for the return value and falling back
> to 32 bit DMA is consistent with most of the device drivers currently in the
> kernel using this function and setting 64 bit DMA. Am I missing something
> here?
>
> I agree that dma_set_mask() can fail, but the only failure mode I
> know of is when the architecture code can't handle masks that _small_.
> Since we're setting it to the maximum value, I wasn't aware of a way it
> could fail.
>
> > Maybe checking for the sizeof(dma_addr_t)  is superfluous and we can
> remove.
> >
> > Without this patch we have hit system hang on a 32 bit OS earlier. Adding
> this patch resolved the issue.
>
> Was it 32-bit x86, or some other architecture?

[CB] Yes, we saw the issue on an x86 machine with 32 bit Linux. The same machine we are now using with 64 bit Linux and is working as it is (without the patch).


________________________________

PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-03-05 21:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-28 19:49 [PATCH 1/2] Add support for 32 bit DMA for 32 bit machines Chayan Biswas
2013-03-01 15:12 ` Matthew Wilcox
2013-03-01 22:05   ` Chayan Biswas
2013-03-04 12:46     ` Matthew Wilcox
2013-03-05 21:57       ` Chayan Biswas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).