Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-08-03 Thread Bharat Bhushan
naro.org; > >>> alex.william...@redhat.com; m...@redhat.com; qemu- > a...@nongnu.org; > >>> qemu-devel@nongnu.org; jean-philippe.bruc...@arm.com; > >>> w...@redhat.com; kevin.t...@intel.com; Bharat Bhushan > >>> <bharat.bhus...@nxp.com>; marc

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-31 Thread Auger Eric
m; kevin.t...@intel.com; Bharat Bhushan >>> <bharat.bhus...@nxp.com>; marc.zyng...@arm.com; t...@semihalf.com; >>> will.dea...@arm.com; drjo...@redhat.com; robin.mur...@arm.com; >>> christoffer.d...@linaro.org >>> Subject: Re: [Qemu-devel] [RFC v2 6/8] virti

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-16 Thread Peter Xu
On Fri, Jul 14, 2017 at 12:25:13PM +0100, Jean-Philippe Brucker wrote: > Hi Peter, > > On 14/07/17 03:17, Peter Xu wrote: > > > > [...] > > > >> static int virtio_iommu_unmap(VirtIOIOMMU *s, > >> @@ -133,10 +227,64 @@ static int virtio_iommu_unmap(VirtIOIOMMU *s, > >> uint64_t virt_addr =

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-16 Thread Peter Xu
; marc.zyng...@arm.com; t...@semihalf.com; > > will.dea...@arm.com; drjo...@redhat.com; robin.mur...@arm.com; > > christoffer.d...@linaro.org > > Subject: Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the > > translation and commands > > > > On Wed, Jun 07, 201

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-14 Thread Jean-Philippe Brucker
Hi Peter, On 14/07/17 03:17, Peter Xu wrote: > > [...] > >> static int virtio_iommu_unmap(VirtIOIOMMU *s, >> @@ -133,10 +227,64 @@ static int virtio_iommu_unmap(VirtIOIOMMU *s, >> uint64_t virt_addr = le64_to_cpu(req->virt_addr); >> uint64_t size = le64_to_cpu(req->size); >>

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-14 Thread Bharat Bhushan
.@linaro.org > Subject: Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the > translation and commands > > On Wed, Jun 07, 2017 at 06:01:25PM +0200, Eric Auger wrote: > > This patch adds the actual implementation for the translation routine > > and the virtio-iom

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-13 Thread Peter Xu
On Wed, Jun 07, 2017 at 06:01:25PM +0200, Eric Auger wrote: > This patch adds the actual implementation for the translation routine > and the virtio-iommu commands. > > Signed-off-by: Eric Auger [...] > static int virtio_iommu_attach(VirtIOIOMMU *s, >

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-05 Thread Auger Eric
Hi Bharat, On 04/07/2017 11:13, Bharat Bhushan wrote: > Hi Eric, > >> -Original Message- >> From: Eric Auger [mailto:eric.au...@redhat.com] >> Sent: Wednesday, June 07, 2017 9:31 PM >> To: eric.auger@gmail.com; eric.au...@redhat.com; >> peter.mayd...@linaro.org;

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-07-04 Thread Bharat Bhushan
Hi Eric, > -Original Message- > From: Eric Auger [mailto:eric.au...@redhat.com] > Sent: Wednesday, June 07, 2017 9:31 PM > To: eric.auger@gmail.com; eric.au...@redhat.com; > peter.mayd...@linaro.org; alex.william...@redhat.com; m...@redhat.com; > qemu-...@nongnu.org;

Re: [Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-06-23 Thread Jean-Philippe Brucker
On 07/06/17 17:01, Eric Auger wrote: > This patch adds the actual implementation for the translation routine > and the virtio-iommu commands. > > Signed-off-by: Eric Auger > > ---[...] > static int virtio_iommu_attach(VirtIOIOMMU *s, >

[Qemu-devel] [RFC v2 6/8] virtio-iommu: Implement the translation and commands

2017-06-07 Thread Eric Auger
This patch adds the actual implementation for the translation routine and the virtio-iommu commands. Signed-off-by: Eric Auger --- v1 -> v2: - fix compilation issue reported by autobuild system --- hw/virtio/trace-events | 6 ++ hw/virtio/virtio-iommu.c | 202