From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOgij-0002Fi-JO for qemu-devel@nongnu.org; Thu, 28 Jan 2016 02:10:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aOgii-0000cN-Nq for qemu-devel@nongnu.org; Thu, 28 Jan 2016 02:10:21 -0500 From: Pavel Fedin References: <1453902715-25304-1-git-send-email-eric.auger@linaro.org> <1453902715-25304-7-git-send-email-eric.auger@linaro.org> In-reply-to: <1453902715-25304-7-git-send-email-eric.auger@linaro.org> Date: Thu, 28 Jan 2016 10:10:06 +0300 Message-id: <00a901d1599a$eba575a0$c2f060e0$@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-language: ru Subject: Re: [Qemu-devel] [RFC 6/7] hw: arm: virt: register reserved IOVA region List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: 'Eric Auger' , eric.auger@st.com, qemu-devel@nongnu.org, qemu-arm@nongnu.org, peter.maydell@linaro.org, alex.williamson@redhat.com, pranav.sawargaonkar@gmail.com, pbonzini@redhat.com, agraf@suse.de Cc: Bharat.Bhushan@freescale.com, suravee.suthikulpanit@amd.com, christoffer.dall@linaro.org Hello! > diff --git a/hw/arm/virt.c b/hw/arm/virt.c > index 3839c68..7eaf8be 100644 > --- a/hw/arm/virt.c > +++ b/hw/arm/virt.c > @@ -125,6 +125,7 @@ static const MemMapEntry a15memmap[] = { > [VIRT_GPIO] = { 0x09030000, 0x00001000 }, > [VIRT_SECURE_UART] = { 0x09040000, 0x00001000 }, > [VIRT_MMIO] = { 0x0a000000, 0x00000200 }, > + [VIRT_RESERVED] = { 0x0be00000, 0x00100000 }, Looks like with this approach we would need to add this to all machine models which make use of PCI. But is it a good idea? As far as i understand, the only requirement for this region is not to clash with guest RAM addresses. So, can we instead have some code, which automatically finds some place, based on the size? For now we hardcode the size to 0x00100000, but in future we could query the host for the size, because it's still host's MSI controller. Kind regards, Pavel Fedin Senior Engineer Samsung Electronics Research center Russia