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

Re: [PATCH v3 09/17] xen/arm: Add support for PCI init to initialize the PCI driver.


  • To: Rahul Singh <Rahul.Singh@xxxxxxx>
  • From: Bertrand Marquis <Bertrand.Marquis@xxxxxxx>
  • Date: Wed, 29 Sep 2021 07:35:41 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.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; bh=br4YWecE0/dKzQxIu3myDDCGg0qQtfSf+Xoe6/yi/Ws=; b=SMsIfJg+TMU44/f8AGoLujpu9qGixgt0iU5Bm5mmh1dcq9cBDBN3U4kB/VwU+BwQaq3cickJl4dO26ETELAwP0twzi+8rvoEv4Qhb4Ixe5Kjh8hER1nfLQ0GZm/1Sumh3wcuB6O0cpHB5f0mc+iOa7NVMO+tNo9lhnrmz5MpxdpGfL4+SSNWjSzJFE+mhEg8db9uZPSQ9hktodZNKDq4XpVAuYRMq0sEaSNPTociIh4TBj9PxRP3c8MTJYkeuuQjzQ3sfTO64jyCSqW1OWWzlI43gbGrbUueV2NSY/1IXrmFJG/YIxQt8KzjbO/k5dYOw0Ax7Pec9HpXu9zH6MlX+g==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=nNcaf4utAUU/qZgyIIED6jljHtXqi8HH2h0jDD92AfKF05z6OM5Ix/NVc3fFDLA3bxR2NGmtKVXi7ZCRsUFQxA6VW7XlzlGkE7FBbeQ/cmlklysdz9MpfhahUWfQUFwT/TqP2Vl66ZfIPMOsbPTB+lOWoUsLCIwrXIv0X6rCBWAwFZy9wJ7NaFU2hjGpvo3+KiqUtNq34oRjTaavLaaKNGTIjV470HD57pmTjDBrMiCiG8lsuYUKSVx6DMPZYSGzcMd4MtIKTpLJWbDYb3+UZiPsYoQOEZuQgPe1J5o4lD0iuD5b3Ha0l7w+V04gcqgPriTHbKlMZ9B4DVSzDAXQhg==
  • Authentication-results-original: arm.com; dkim=none (message not signed) header.d=none;arm.com; dmarc=none action=none header.from=arm.com;
  • Cc: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Andre Przywara <Andre.Przywara@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>
  • Delivery-date: Wed, 29 Sep 2021 07:36:06 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Nodisclaimer: true
  • Original-authentication-results: arm.com; dkim=none (message not signed) header.d=none;arm.com; dmarc=none action=none header.from=arm.com;
  • Thread-index: AQHXtJXC6tCzxs8NFU+yBY1A0K6UAau6oAmA
  • Thread-topic: [PATCH v3 09/17] xen/arm: Add support for PCI init to initialize the PCI driver.

Hi Rahul,

> On 28 Sep 2021, at 19:18, Rahul Singh <rahul.singh@xxxxxxx> wrote:
> 
> pci_init(..) will be called during xen startup to initialize and probe
> the PCI host-bridge driver.
> 
> Signed-off-by: Rahul Singh <rahul.singh@xxxxxxx>
Reviewed-by: Bertrand Marquis <bertrand.marquis@xxxxxxx>

Cheers
Bertrand

> ---
> Change in v3:
> - Some nit for device_init(..) return logic
> - Remove inline from acpi_pci_init(..)
> - Modify return value for apci_pci_init(..) to return -EOPNOTSUPP
> Change in v2:
> - ACPI init function to return int
> - pci_segments_init() called before dt/acpi init
> ---
> xen/arch/arm/pci/pci.c       | 51 ++++++++++++++++++++++++++++++++++++
> xen/include/asm-arm/device.h |  1 +
> 2 files changed, 52 insertions(+)
> 
> diff --git a/xen/arch/arm/pci/pci.c b/xen/arch/arm/pci/pci.c
> index a7a7bc3213..e359bab9ea 100644
> --- a/xen/arch/arm/pci/pci.c
> +++ b/xen/arch/arm/pci/pci.c
> @@ -12,6 +12,10 @@
>  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
>  */
> 
> +#include <xen/acpi.h>
> +#include <xen/device_tree.h>
> +#include <xen/errno.h>
> +#include <xen/init.h>
> #include <xen/pci.h>
> 
> /*
> @@ -22,6 +26,53 @@ int arch_pci_clean_pirqs(struct domain *d)
>     return 0;
> }
> 
> +static int __init dt_pci_init(void)
> +{
> +    struct dt_device_node *np;
> +    int rc;
> +
> +    dt_for_each_device_node(dt_host, np)
> +    {
> +        rc = device_init(np, DEVICE_PCI, NULL);
> +        /*
> +         * Ignore the following error codes:
> +         *   - EBADF: Indicate the current device is not a pci device.
> +         *   - ENODEV: The pci device is not present or cannot be used by
> +         *     Xen.
> +         */
> +        if( !rc || rc == -EBADF || rc == -ENODEV )
> +            continue;
> +
> +        return rc;
> +    }
> +
> +    return 0;
> +}
> +
> +#ifdef CONFIG_ACPI
> +static int __init acpi_pci_init(void)
> +{
> +    printk(XENLOG_ERR "ACPI pci init not supported \n");
> +    return -EOPNOTSUPP;
> +}
> +#else
> +static int __init acpi_pci_init(void)
> +{
> +    return -EINVAL;
> +}
> +#endif
> +
> +static int __init pci_init(void)
> +{
> +    pci_segments_init();
> +
> +    if ( acpi_disabled )
> +        return dt_pci_init();
> +    else
> +        return acpi_pci_init();
> +}
> +__initcall(pci_init);
> +
> /*
>  * Local variables:
>  * mode: C
> diff --git a/xen/include/asm-arm/device.h b/xen/include/asm-arm/device.h
> index ee7cff2d44..5ecd5e7bd1 100644
> --- a/xen/include/asm-arm/device.h
> +++ b/xen/include/asm-arm/device.h
> @@ -34,6 +34,7 @@ enum device_class
>     DEVICE_SERIAL,
>     DEVICE_IOMMU,
>     DEVICE_GIC,
> +    DEVICE_PCI,
>     /* Use for error */
>     DEVICE_UNKNOWN,
> };
> -- 
> 2.17.1
> 
> 




 


Rackspace

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