All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult
@ 2020-09-04 16:26 Philippe Mathieu-Daudé
  2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-04 16:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Michael S. Tsirkin

The DMA API propagates MemTxResult:
- MEMTX_OK,
- MEMTX_device_ERROR,
- MEMTX_DECODE_ERROR.

Let the PCI DMA API propagate them, as they are
clearer than an undocumented 'int'.

Based-on: <20200904154439.643272-1-philmd@redhat.com>
https://lists.gnu.org/archive/html/qemu-devel/2020-09/msg02048.html

Philippe Mathieu-Daudé (3):
  pci: Let pci_dma_rw() propagate MemTxResult
  pci: Let pci_dma_read() propagate MemTxResult
  pci: Let pci_dma_write() propagate MemTxResult

 include/hw/pci/pci.h | 50 ++++++++++++++++++++++++++++++++++++++------
 1 file changed, 44 insertions(+), 6 deletions(-)

-- 
2.26.2



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

* [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult
  2020-09-04 16:26 [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
@ 2020-09-04 16:26 ` Philippe Mathieu-Daudé
  2020-09-05  2:41   ` Li Qiang
  2020-09-06  4:06   ` Richard Henderson
  2020-09-04 16:26 ` [PATCH 2/3] pci: Let pci_dma_read() " Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 11+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-04 16:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Michael S. Tsirkin

dma_memory_rw() returns a MemTxResult type.
Do not discard it, return it to the caller.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 include/hw/pci/pci.h | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
index a221dfb3b08..a85b0bc3c44 100644
--- a/include/hw/pci/pci.h
+++ b/include/hw/pci/pci.h
@@ -785,8 +785,22 @@ static inline AddressSpace *pci_get_address_space(PCIDevice *dev)
     return &dev->bus_master_as;
 }
 
-static inline int pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
-                             void *buf, dma_addr_t len, DMADirection dir)
+/**
+ * pci_dma_rw: Read from or write to an address space from PCI device.
+ *
+ * Return a MemTxResult indicating whether the operation succeeded
+ * or failed (eg unassigned memory, device rejected the transaction,
+ * IOMMU fault).
+ *
+ * @dev: #PCIDevice doing the memory access
+ * @addr: address within the #PCIDevice address space
+ * @buf: buffer with the data transferred
+ * @len: the number of bytes to read or write
+ * @dir: indicates the transfer direction
+ */
+static inline MemTxResult pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
+                                     void *buf, dma_addr_t len,
+                                     DMADirection dir)
 {
     return dma_memory_rw(pci_get_address_space(dev), addr, buf, len,
                          dir, MEMTXATTRS_UNSPECIFIED);
-- 
2.26.2



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

* [PATCH 2/3] pci: Let pci_dma_read() propagate MemTxResult
  2020-09-04 16:26 [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
  2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
@ 2020-09-04 16:26 ` Philippe Mathieu-Daudé
  2020-09-05  2:42   ` Li Qiang
  2020-09-06  4:07   ` Richard Henderson
  2020-09-04 16:26 ` [PATCH 3/3] pci: Let pci_dma_write() " Philippe Mathieu-Daudé
  2020-09-15 17:30 ` [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
  3 siblings, 2 replies; 11+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-04 16:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Michael S. Tsirkin

pci_dma_rw() returns a MemTxResult type.
Do not discard it, return it to the caller.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 include/hw/pci/pci.h | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
index a85b0bc3c44..bb57525dffd 100644
--- a/include/hw/pci/pci.h
+++ b/include/hw/pci/pci.h
@@ -806,8 +806,20 @@ static inline MemTxResult pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
                          dir, MEMTXATTRS_UNSPECIFIED);
 }
 
-static inline int pci_dma_read(PCIDevice *dev, dma_addr_t addr,
-                               void *buf, dma_addr_t len)
+/**
+ * pci_dma_read: Read from an address space from PCI device.
+ *
+ * Return a MemTxResult indicating whether the operation succeeded
+ * or failed (eg unassigned memory, device rejected the transaction,
+ * IOMMU fault).  Called within RCU critical section.
+ *
+ * @dev: #PCIDevice doing the memory access
+ * @addr: address within the #PCIDevice address space
+ * @buf: buffer with the data transferred
+ * @len: length of the data transferred
+ */
+static inline MemTxResult pci_dma_read(PCIDevice *dev, dma_addr_t addr,
+                                       void *buf, dma_addr_t len)
 {
     return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
 }
-- 
2.26.2



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

* [PATCH 3/3] pci: Let pci_dma_write() propagate MemTxResult
  2020-09-04 16:26 [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
  2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
  2020-09-04 16:26 ` [PATCH 2/3] pci: Let pci_dma_read() " Philippe Mathieu-Daudé
@ 2020-09-04 16:26 ` Philippe Mathieu-Daudé
  2020-09-05  2:42   ` Li Qiang
  2020-09-06  4:08   ` Richard Henderson
  2020-09-15 17:30 ` [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
  3 siblings, 2 replies; 11+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-04 16:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé, Michael S. Tsirkin

pci_dma_rw() returns a MemTxResult type.
Do not discard it, return it to the caller.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 include/hw/pci/pci.h | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
index bb57525dffd..76826e240a9 100644
--- a/include/hw/pci/pci.h
+++ b/include/hw/pci/pci.h
@@ -824,8 +824,20 @@ static inline MemTxResult pci_dma_read(PCIDevice *dev, dma_addr_t addr,
     return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
 }
 
-static inline int pci_dma_write(PCIDevice *dev, dma_addr_t addr,
-                                const void *buf, dma_addr_t len)
+/**
+ * pci_dma_write: Write to address space from PCI device.
+ *
+ * Return a MemTxResult indicating whether the operation succeeded
+ * or failed (eg unassigned memory, device rejected the transaction,
+ * IOMMU fault).
+ *
+ * @dev: #PCIDevice doing the memory access
+ * @addr: address within the #PCIDevice address space
+ * @buf: buffer with the data transferred
+ * @len: the number of bytes to write
+ */
+static inline MemTxResult pci_dma_write(PCIDevice *dev, dma_addr_t addr,
+                                        const void *buf, dma_addr_t len)
 {
     return pci_dma_rw(dev, addr, (void *) buf, len, DMA_DIRECTION_FROM_DEVICE);
 }
-- 
2.26.2



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

* Re: [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
@ 2020-09-05  2:41   ` Li Qiang
  2020-09-06  4:06   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Li Qiang @ 2020-09-05  2:41 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: Qemu Developers, Michael S. Tsirkin

Philippe Mathieu-Daudé <philmd@redhat.com> 于2020年9月5日周六 上午12:26写道:
>
> dma_memory_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/pci/pci.h | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)
>
> diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
> index a221dfb3b08..a85b0bc3c44 100644
> --- a/include/hw/pci/pci.h
> +++ b/include/hw/pci/pci.h
> @@ -785,8 +785,22 @@ static inline AddressSpace *pci_get_address_space(PCIDevice *dev)
>      return &dev->bus_master_as;
>  }
>
> -static inline int pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
> -                             void *buf, dma_addr_t len, DMADirection dir)
> +/**
> + * pci_dma_rw: Read from or write to an address space from PCI device.
> + *
> + * Return a MemTxResult indicating whether the operation succeeded
> + * or failed (eg unassigned memory, device rejected the transaction,
> + * IOMMU fault).
> + *
> + * @dev: #PCIDevice doing the memory access
> + * @addr: address within the #PCIDevice address space
> + * @buf: buffer with the data transferred
> + * @len: the number of bytes to read or write
> + * @dir: indicates the transfer direction
> + */
> +static inline MemTxResult pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
> +                                     void *buf, dma_addr_t len,
> +                                     DMADirection dir)
>  {
>      return dma_memory_rw(pci_get_address_space(dev), addr, buf, len,
>                           dir, MEMTXATTRS_UNSPECIFIED);

Reviewed-by: Li Qiang <liq3ea@gmail.com>

> --
> 2.26.2
>
>


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

* Re: [PATCH 2/3] pci: Let pci_dma_read() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 2/3] pci: Let pci_dma_read() " Philippe Mathieu-Daudé
@ 2020-09-05  2:42   ` Li Qiang
  2020-09-06  4:07   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Li Qiang @ 2020-09-05  2:42 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: Qemu Developers, Michael S. Tsirkin

Philippe Mathieu-Daudé <philmd@redhat.com> 于2020年9月5日周六 上午12:27写道:
>
> pci_dma_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Li Qiang <liq3ea@gmail.com>

> ---
>  include/hw/pci/pci.h | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
> index a85b0bc3c44..bb57525dffd 100644
> --- a/include/hw/pci/pci.h
> +++ b/include/hw/pci/pci.h
> @@ -806,8 +806,20 @@ static inline MemTxResult pci_dma_rw(PCIDevice *dev, dma_addr_t addr,
>                           dir, MEMTXATTRS_UNSPECIFIED);
>  }
>
> -static inline int pci_dma_read(PCIDevice *dev, dma_addr_t addr,
> -                               void *buf, dma_addr_t len)
> +/**
> + * pci_dma_read: Read from an address space from PCI device.
> + *
> + * Return a MemTxResult indicating whether the operation succeeded
> + * or failed (eg unassigned memory, device rejected the transaction,
> + * IOMMU fault).  Called within RCU critical section.
> + *
> + * @dev: #PCIDevice doing the memory access
> + * @addr: address within the #PCIDevice address space
> + * @buf: buffer with the data transferred
> + * @len: length of the data transferred
> + */
> +static inline MemTxResult pci_dma_read(PCIDevice *dev, dma_addr_t addr,
> +                                       void *buf, dma_addr_t len)
>  {
>      return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
>  }
> --
> 2.26.2
>
>


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

* Re: [PATCH 3/3] pci: Let pci_dma_write() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 3/3] pci: Let pci_dma_write() " Philippe Mathieu-Daudé
@ 2020-09-05  2:42   ` Li Qiang
  2020-09-06  4:08   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Li Qiang @ 2020-09-05  2:42 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: Qemu Developers, Michael S. Tsirkin

Philippe Mathieu-Daudé <philmd@redhat.com> 于2020年9月5日周六 上午12:26写道:
>
> pci_dma_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Li Qiang <liq3ea@gmail.com>

> ---
>  include/hw/pci/pci.h | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
> index bb57525dffd..76826e240a9 100644
> --- a/include/hw/pci/pci.h
> +++ b/include/hw/pci/pci.h
> @@ -824,8 +824,20 @@ static inline MemTxResult pci_dma_read(PCIDevice *dev, dma_addr_t addr,
>      return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
>  }
>
> -static inline int pci_dma_write(PCIDevice *dev, dma_addr_t addr,
> -                                const void *buf, dma_addr_t len)
> +/**
> + * pci_dma_write: Write to address space from PCI device.
> + *
> + * Return a MemTxResult indicating whether the operation succeeded
> + * or failed (eg unassigned memory, device rejected the transaction,
> + * IOMMU fault).
> + *
> + * @dev: #PCIDevice doing the memory access
> + * @addr: address within the #PCIDevice address space
> + * @buf: buffer with the data transferred
> + * @len: the number of bytes to write
> + */
> +static inline MemTxResult pci_dma_write(PCIDevice *dev, dma_addr_t addr,
> +                                        const void *buf, dma_addr_t len)
>  {
>      return pci_dma_rw(dev, addr, (void *) buf, len, DMA_DIRECTION_FROM_DEVICE);
>  }
> --
> 2.26.2
>
>


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

* Re: [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
  2020-09-05  2:41   ` Li Qiang
@ 2020-09-06  4:06   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Richard Henderson @ 2020-09-06  4:06 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: Michael S. Tsirkin

On 9/4/20 9:26 AM, Philippe Mathieu-Daudé wrote:
> dma_memory_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/pci/pci.h | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~



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

* Re: [PATCH 2/3] pci: Let pci_dma_read() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 2/3] pci: Let pci_dma_read() " Philippe Mathieu-Daudé
  2020-09-05  2:42   ` Li Qiang
@ 2020-09-06  4:07   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Richard Henderson @ 2020-09-06  4:07 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: Michael S. Tsirkin

On 9/4/20 9:26 AM, Philippe Mathieu-Daudé wrote:
> pci_dma_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/pci/pci.h | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~



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

* Re: [PATCH 3/3] pci: Let pci_dma_write() propagate MemTxResult
  2020-09-04 16:26 ` [PATCH 3/3] pci: Let pci_dma_write() " Philippe Mathieu-Daudé
  2020-09-05  2:42   ` Li Qiang
@ 2020-09-06  4:08   ` Richard Henderson
  1 sibling, 0 replies; 11+ messages in thread
From: Richard Henderson @ 2020-09-06  4:08 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: Michael S. Tsirkin

On 9/4/20 9:26 AM, Philippe Mathieu-Daudé wrote:
> pci_dma_rw() returns a MemTxResult type.
> Do not discard it, return it to the caller.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/pci/pci.h | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~



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

* Re: [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult
  2020-09-04 16:26 [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2020-09-04 16:26 ` [PATCH 3/3] pci: Let pci_dma_write() " Philippe Mathieu-Daudé
@ 2020-09-15 17:30 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 11+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-15 17:30 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael S. Tsirkin

On 9/4/20 6:26 PM, Philippe Mathieu-Daudé wrote:
> The DMA API propagates MemTxResult:
> - MEMTX_OK,
> - MEMTX_device_ERROR,
> - MEMTX_DECODE_ERROR.
> 
> Let the PCI DMA API propagate them, as they are
> clearer than an undocumented 'int'.
> 
> Based-on: <20200904154439.643272-1-philmd@redhat.com>
> https://lists.gnu.org/archive/html/qemu-devel/2020-09/msg02048.html
> 
> Philippe Mathieu-Daudé (3):
>   pci: Let pci_dma_rw() propagate MemTxResult
>   pci: Let pci_dma_read() propagate MemTxResult
>   pci: Let pci_dma_write() propagate MemTxResult
> 
>  include/hw/pci/pci.h | 50 ++++++++++++++++++++++++++++++++++++++------
>  1 file changed, 44 insertions(+), 6 deletions(-)
> 

This series is fully review.

Paolo, if you take the DMA series on which this one
is based, could you take this too?

Thanks :)



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

end of thread, other threads:[~2020-09-15 17:45 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-04 16:26 [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé
2020-09-04 16:26 ` [PATCH 1/3] pci: Let pci_dma_rw() propagate MemTxResult Philippe Mathieu-Daudé
2020-09-05  2:41   ` Li Qiang
2020-09-06  4:06   ` Richard Henderson
2020-09-04 16:26 ` [PATCH 2/3] pci: Let pci_dma_read() " Philippe Mathieu-Daudé
2020-09-05  2:42   ` Li Qiang
2020-09-06  4:07   ` Richard Henderson
2020-09-04 16:26 ` [PATCH 3/3] pci: Let pci_dma_write() " Philippe Mathieu-Daudé
2020-09-05  2:42   ` Li Qiang
2020-09-06  4:08   ` Richard Henderson
2020-09-15 17:30 ` [PATCH 0/3] pci: Let PCI DMA API functions propagate a MemTxResult Philippe Mathieu-Daudé

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.