qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: pbonzini@redhat.com
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 16/17] spapr_vio: take care of creating our own AddressSpace/DMAContext
Date: Wed, 1 May 2013 15:16:31 +1000	[thread overview]
Message-ID: <20130501051631.GB14106@truffula.fritz.box> (raw)
In-Reply-To: <1367378320-9246-16-git-send-email-david@gibson.dropbear.id.au>

[-- Attachment #1: Type: text/plain, Size: 6789 bytes --]

On Wed, May 01, 2013 at 01:18:39PM +1000, David Gibson wrote:
> From: Paolo Bonzini <pbonzini@redhat.com>
> 
> Fetch the root region from the sPAPRTCETable, and use it to build
> an AddressSpace and DMAContext.
> 
> Now, everywhere we have a DMAContext we also have access to the
> corresponding AddressSpace (either because we create it just before
> the DMAContext, or because dma_context_memory's AddressSpace is
> trivially address_space_memory).
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  hw/ppc/spapr_iommu.c       |   11 -----------
>  hw/ppc/spapr_vio.c         |    3 ++-
>  include/hw/ppc/spapr.h     |    1 -
>  include/hw/ppc/spapr_vio.h |   36 +++++++++++++++++++++++-------------
>  4 files changed, 25 insertions(+), 26 deletions(-)
> 
> diff --git a/hw/ppc/spapr_iommu.c b/hw/ppc/spapr_iommu.c
> index e26f957..2bc45d8 100644
> --- a/hw/ppc/spapr_iommu.c
> +++ b/hw/ppc/spapr_iommu.c
> @@ -37,10 +37,6 @@ enum sPAPRTCEAccess {
>  };
>  
>  struct sPAPRTCETable {
> -    /* temporary until everyone has its own AddressSpace */
> -    DMAContext dma;
> -    AddressSpace as;
> -
>      uint32_t liobn;
>      uint32_t window_size;
>      sPAPRTCE *table;
> @@ -148,8 +144,6 @@ sPAPRTCETable *spapr_tce_new_table(uint32_t liobn, size_t window_size)
>      memory_region_init_iommu(&tcet->iommu, &spapr_iommu_ops,
>                               get_system_memory(),
>                               "iommu-spapr", INT64_MAX);
> -    address_space_init(&tcet->as, &tcet->iommu);
> -    dma_context_init(&tcet->dma, &tcet->as);
>  
>      QLIST_INSERT_HEAD(&spapr_tce_tables, tcet, list);
>  
> @@ -169,11 +163,6 @@ void spapr_tce_free(sPAPRTCETable *tcet)
>      g_free(tcet);
>  }
>  
> -DMAContext *spapr_tce_get_dma(sPAPRTCETable *tcet)
> -{
> -    return &tcet->dma;
> -}
> -
>  MemoryRegion *spapr_tce_get_iommu(sPAPRTCETable *tcet)
>  {
>      return &tcet->iommu;
> diff --git a/hw/ppc/spapr_vio.c b/hw/ppc/spapr_vio.c
> index 7544def..2bd86ad 100644
> --- a/hw/ppc/spapr_vio.c
> +++ b/hw/ppc/spapr_vio.c
> @@ -449,7 +449,8 @@ static int spapr_vio_busdev_init(DeviceState *qdev)
>      if (pc->rtce_window_size) {
>          uint32_t liobn = SPAPR_VIO_BASE_LIOBN | dev->reg;
>          dev->tcet = spapr_tce_new_table(liobn, pc->rtce_window_size);
> -        dev->dma = spapr_tce_get_dma(dev->tcet);
> +        address_space_init(&dev->as, spapr_tce_get_iommu(dev->tcet));
> +        dma_context_init(&dev->dma, &dev->as);
>      }
>  
>      return pc->init(dev);
> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
> index 142abb7..a83720e 100644
> --- a/include/hw/ppc/spapr.h
> +++ b/include/hw/ppc/spapr.h
> @@ -348,7 +348,6 @@ void spapr_iommu_init(void);
>  void spapr_events_init(sPAPREnvironment *spapr);
>  void spapr_events_fdt_skel(void *fdt, uint32_t epow_irq);
>  sPAPRTCETable *spapr_tce_new_table(uint32_t liobn, size_t window_size);
> -DMAContext *spapr_tce_get_dma(sPAPRTCETable *tcet);
>  MemoryRegion *spapr_tce_get_iommu(sPAPRTCETable *tcet);
>  void spapr_tce_free(sPAPRTCETable *tcet);
>  void spapr_tce_reset(sPAPRTCETable *tcet);
> diff --git a/include/hw/ppc/spapr_vio.h b/include/hw/ppc/spapr_vio.h
> index 56f2821..b757f32 100644
> --- a/include/hw/ppc/spapr_vio.h
> +++ b/include/hw/ppc/spapr_vio.h
> @@ -63,8 +63,9 @@ struct VIOsPAPRDevice {
>      uint32_t irq;
>      target_ulong signal_state;
>      VIOsPAPR_CRQ crq;
> +    AddressSpace as;
> +    DMAContext dma;
>      sPAPRTCETable *tcet;
> -    DMAContext *dma;
>  };
>  
>  #define DEFINE_SPAPR_PROPERTIES(type, field)           \
> @@ -92,35 +93,44 @@ static inline qemu_irq spapr_vio_qirq(VIOsPAPRDevice *dev)
>  static inline bool spapr_vio_dma_valid(VIOsPAPRDevice *dev, uint64_t taddr,
>                                         uint32_t size, DMADirection dir)
>  {
> -    return dma_memory_valid(dev->dma, taddr, size, dir);
> +    return dma_memory_valid(&dev->dma, taddr, size, dir);
>  }
>  
>  static inline int spapr_vio_dma_read(VIOsPAPRDevice *dev, uint64_t taddr,
>                                       void *buf, uint32_t size)
>  {
> -    return (dma_memory_read(dev->dma, taddr, buf, size) != 0) ?
> -        H_DEST_PARM : H_SUCCESS;
> +    if (!dma_memory_valid(&dev->dma, taddr, size, DMA_DIRECTION_TO_DEVICE)) {
> +        return H_DEST_PARM;
> +    }
> +    dma_memory_read(&dev->dma, taddr, buf, size);

Lack of atomicity makes me a little nervous there, although I guess
its ok since qemu is single-threaded.  It does mean we do the
translations twice, effectively, which isn't ideal, although emulated
devices are already so slow it probably doesn't matter.

> +    return H_SUCCESS;
>  }
>  
>  static inline int spapr_vio_dma_write(VIOsPAPRDevice *dev, uint64_t taddr,
>                                        const void *buf, uint32_t size)
>  {
> -    return (dma_memory_write(dev->dma, taddr, buf, size) != 0) ?
> -        H_DEST_PARM : H_SUCCESS;
> +    if (!dma_memory_valid(&dev->dma, taddr, size, DMA_DIRECTION_FROM_DEVICE)) {
> +        return H_DEST_PARM;
> +    }
> +    dma_memory_write(&dev->dma, taddr, buf, size);
> +    return H_SUCCESS;
>  }
>  
>  static inline int spapr_vio_dma_set(VIOsPAPRDevice *dev, uint64_t taddr,
>                                      uint8_t c, uint32_t size)
>  {
> -    return (dma_memory_set(dev->dma, taddr, c, size) != 0) ?
> -        H_DEST_PARM : H_SUCCESS;
> +    if (!dma_memory_valid(&dev->dma, taddr, size, DMA_DIRECTION_FROM_DEVICE)) {
> +        return H_DEST_PARM;
> +    }
> +    dma_memory_set(&dev->dma, taddr, c, size);
> +    return H_SUCCESS;
>  }
>  
> -#define vio_stb(_dev, _addr, _val) (stb_dma((_dev)->dma, (_addr), (_val)))
> -#define vio_sth(_dev, _addr, _val) (stw_be_dma((_dev)->dma, (_addr), (_val)))
> -#define vio_stl(_dev, _addr, _val) (stl_be_dma((_dev)->dma, (_addr), (_val)))
> -#define vio_stq(_dev, _addr, _val) (stq_be_dma((_dev)->dma, (_addr), (_val)))
> -#define vio_ldq(_dev, _addr) (ldq_be_dma((_dev)->dma, (_addr)))
> +#define vio_stb(_dev, _addr, _val) (stb_dma(&(_dev)->dma, (_addr), (_val)))
> +#define vio_sth(_dev, _addr, _val) (stw_be_dma(&(_dev)->dma, (_addr), (_val)))
> +#define vio_stl(_dev, _addr, _val) (stl_be_dma(&(_dev)->dma, (_addr), (_val)))
> +#define vio_stq(_dev, _addr, _val) (stq_be_dma(&(_dev)->dma, (_addr), (_val)))
> +#define vio_ldq(_dev, _addr) (ldq_be_dma(&(_dev)->dma, (_addr)))
>  
>  int spapr_vio_send_crq(VIOsPAPRDevice *dev, uint8_t *crq);
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  parent reply	other threads:[~2013-05-01  5:17 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1367378320-9246-1-git-send-email-david@gibson.dropbear.id.au>
     [not found] ` <1367378320-9246-7-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  4:02   ` [Qemu-devel] [PATCH 07/17] memory: add address_space_valid David Gibson
2013-05-01  7:17     ` Paolo Bonzini
     [not found] ` <1367378320-9246-11-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  4:38   ` [Qemu-devel] [PATCH 11/17] spapr: convert TCE API to use an opaque type David Gibson
     [not found] ` <1367378320-9246-13-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  4:46   ` [Qemu-devel] [PATCH 13/17] spapr: use memory core for iommu support David Gibson
     [not found] ` <1367378320-9246-14-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  4:49   ` [Qemu-devel] [PATCH 14/17] dma: eliminate old-style IOMMU support David Gibson
     [not found] ` <1367378320-9246-15-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  5:06   ` [Qemu-devel] [PATCH 15/17] pci: use memory core for iommu support David Gibson
2013-05-01 16:07     ` Paolo Bonzini
     [not found] ` <1367378320-9246-16-git-send-email-david@gibson.dropbear.id.au>
2013-05-01  5:16   ` David Gibson [this message]
2013-05-01 16:09     ` [Qemu-devel] [PATCH 16/17] spapr_vio: take care of creating our own AddressSpace/DMAContext Paolo Bonzini
2013-05-02  2:24       ` David Gibson

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=20130501051631.GB14106@truffula.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=aik@ozlabs.ru \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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 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).