[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v8 2/5] xen/arm: Enable the existing x86 virtual PCI support for ARM


  • To: Jan Beulich <jbeulich@xxxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>
  • From: Oleksandr Andrushchenko <Oleksandr_Andrushchenko@xxxxxxxx>
  • Date: Mon, 18 Oct 2021 14:07:48 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=YzqIXUW/GuM6HHgf1LJ/uCigthYMGbHIfWQI0mOFCLE=; b=gpR7p5D7xC6tgnD/qPVLBgWDdMqCSc4HDYHPv3LbecOUGiUAf416aD21y4BdwN/ncNCDS6WjID7EUhMY6J1lgLbTRTsHjIWGW4cCNC1GLlOPFICNqcSncpz/aXNZHOaQTDbgUCXev3ap9+aS79VRzDA2F7CGGTkT3cHWrm//rdA5LY2yuUmfAmkRZ72yHXWQsTzuoYhKhI0fuEiLgTmuXfdJ2OMb2C5/nd2fDLVtKAA47x2PF/VN87k8soWlVCzsIA3ynKZp/Ax3mlT6GSBSoTM62QD1ZZ+pkkfa645ugI2SLmr61kUYN3tAE6Xmis7tDixcVEjCVL9HDIQZloHzfQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=lhmFHc1An/VojewQmULopIm7DyEoiRpAbRsjpXycl+w4e6U4hma0+1am9qlXVEP9CA8wcr75JRN5LmG6TXOFk9PT3mCi+uJn0yX/g1x3C4mgg/VNUsk1enzCbzUoU5D3zJkWZ6zqRbk8m9li3qyL+TvCc7w8x8HTmEuhiLa8tsXEMOAcRqxuzRVTgaBASLLf0HD9jrZGUakeP5uz47Tm6P3DVjAbB3tcpfEwrhCrQN8j7OA2IyUHpBlVYg6orK47E2NuaUQMTjJCbiPbhMi0gT2bqdgO1NKIYdmcnn6obyNhhJZ+qZHhHo16bHMbUCTQ9EiqmO0cLTnmkeu9C5orTA==
  • Authentication-results: suse.com; dkim=none (message not signed) header.d=none;suse.com; dmarc=none action=none header.from=epam.com;
  • Cc: Rahul Singh <rahul.singh@xxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, "sstabellini@xxxxxxxxxx" <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, Paul Durrant <paul@xxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Oleksandr Andrushchenko <Oleksandr_Andrushchenko@xxxxxxxx>
  • Delivery-date: Mon, 18 Oct 2021 14:08:10 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHXxCmHx+Lzp09rU0elFmx0jxVt5g==
  • Thread-topic: [PATCH v8 2/5] xen/arm: Enable the existing x86 virtual PCI support for ARM


On 18.10.21 13:29, Jan Beulich wrote:
> On 18.10.2021 12:11, Bertrand Marquis wrote:
>>> On 18 Oct 2021, at 08:47, Jan Beulich <jbeulich@xxxxxxxx> wrote:
>>> On 15.10.2021 18:51, Bertrand Marquis wrote:
>>>> --- /dev/null
>>>> +++ b/xen/arch/arm/vpci.c
>>>> @@ -0,0 +1,77 @@
>>>> +/*
>>>> + * xen/arch/arm/vpci.c
>>>> + *
>>>> + * This program is free software; you can redistribute it and/or modify
>>>> + * it under the terms of the GNU General Public License as published by
>>>> + * the Free Software Foundation; either version 2 of the License, or
>>>> + * (at your option) any later version.
>>>> + *
>>>> + * This program is distributed in the hope that it will be useful,
>>>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>>>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>>>> + * GNU General Public License for more details.
>>>> + */
>>>> +#include <xen/sched.h>
>>>> +#include <xen/vpci.h>
>>>> +
>>>> +#include <asm/mmio.h>
>>>> +
>>>> +static int vpci_mmio_read(struct vcpu *v, mmio_info_t *info,
>>>> +                          register_t *r, void *p)
>>>> +{
>>>> +    pci_sbdf_t sbdf;
>>>> +    /* data is needed to prevent a pointer cast on 32bit */
>>>> +    unsigned long data;
>>>> +
>>>> +    /* We ignore segment part and always handle segment 0 */
>>>> +    sbdf.sbdf = VPCI_ECAM_BDF(info->gpa);
>>>> +
>>>> +    if ( vpci_ecam_read(sbdf, ECAM_REG_OFFSET(info->gpa),
>>>> +                        1U << info->dabt.size, &data) )
>>>> +    {
>>> Here it is quite clear that the SBDF you pass into vpci_ecam_read() is
>>> the virtual one. The function then calls vpci_read(), which in turn
>>> will call vpci_read_hw() in a number of situations (first and foremost
>>> whenever pci_get_pdev_by_domain() returns NULL). That function as well
>>> as pci_get_pdev_by_domain() use the passed in SBDF as if it was a
>>> physical one; I'm unable to spot any translation. Yet I do recall
>>> seeing assignment of a virtual device and function number somewhere
>>> (perhaps another of the related series), so the model also doesn't
>>> look to assume 1:1 mapping of SBDF.
>> This question was answered by Oleksandr I think.
> Yes; I continue to be sure though that I saw devfn allocation logic in
> one of the many patches that are related here. And I'm relatively sure
> that there no adjustment to logic here was made (but since it's hard
> to pick the right patch out of the huge pile without knowing its title,
> I can't reasonably go check).
Offtop: I was somehow dropped from the Cc..

Please see:

[PATCH v3 10/11] vpci: Add initial support for virtual PCI bus topology
[PATCH v3 11/11] xen/arm: Translate virtual PCI bus topology for guests

[1] https://patchwork.kernel.org/project/xen-devel/list/?series=555481


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.