From nobody Fri Nov 29 18:36:45 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=arm.com Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 16333484647551020.7151075619277; Mon, 4 Oct 2021 04:54:24 -0700 (PDT) Received: from list by lists.xenproject.org with outflank-mailman.201323.355791 (Exim 4.92) (envelope-from ) id 1mXMXr-00031O-3u; Mon, 04 Oct 2021 11:54:11 +0000 Received: by outflank-mailman (output) from mailman id 201323.355791; Mon, 04 Oct 2021 11:54:11 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mXMXr-00031B-0g; Mon, 04 Oct 2021 11:54:11 +0000 Received: by outflank-mailman (input) for mailman id 201323; Mon, 04 Oct 2021 11:54:10 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mXMXp-0002zQ-VJ for xen-devel@lists.xenproject.org; Mon, 04 Oct 2021 11:54:09 +0000 Received: from foss.arm.com (unknown [217.140.110.172]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTP id c877973e-2509-11ec-beab-12813bfff9fa; Mon, 04 Oct 2021 11:54:09 +0000 (UTC) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C24AC1FB; Mon, 4 Oct 2021 04:54:08 -0700 (PDT) Received: from e109506.cambridge.arm.com (e109506.cambridge.arm.com [10.1.199.62]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id C1CFB3F70D; Mon, 4 Oct 2021 04:54:07 -0700 (PDT) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: c877973e-2509-11ec-beab-12813bfff9fa From: Rahul Singh To: xen-devel@lists.xenproject.org Cc: bertrand.marquis@arm.com, rahul.singh@arm.com, Andre.Przywara@arm.com, Stefano Stabellini , Julien Grall , Volodymyr Babchuk Subject: [PATCH v4 05/14] xen/arm: Add support for PCI init to initialize the PCI driver. Date: Mon, 4 Oct 2021 12:52:00 +0100 Message-Id: X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1633348465447100001 Content-Type: text/plain; charset="utf-8" pci_init(..) will be called during xen startup to initialize and probe the PCI host-bridge driver. Signed-off-by: Rahul Singh Reviewed-by: Stefano Stabellini Reviewed-by: Bertrand Marquis --- Change in v4: - Added Reviewed-by: Bertrand Marquis - Added Reviewed-by: Stefano Stabellini 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 . */ =20 +#include +#include +#include +#include #include =20 /* @@ -22,6 +26,53 @@ int arch_pci_clean_pirqs(struct domain *d) return 0; } =20 +static int __init dt_pci_init(void) +{ + struct dt_device_node *np; + int rc; + + dt_for_each_device_node(dt_host, np) + { + rc =3D 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 =3D=3D -EBADF || rc =3D=3D -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, }; --=20 2.25.1