From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 26A20C4338F for ; Thu, 22 Jul 2021 23:36:02 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D47CD60E9B for ; Thu, 22 Jul 2021 23:36:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org D47CD60E9B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.xenproject.org Received: from list by lists.xenproject.org with outflank-mailman.159895.294044 (Exim 4.92) (envelope-from ) id 1m6iEM-0000fO-8Z; Thu, 22 Jul 2021 23:35:54 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 159895.294044; Thu, 22 Jul 2021 23:35:54 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1m6iEM-0000fH-4j; Thu, 22 Jul 2021 23:35:54 +0000 Received: by outflank-mailman (input) for mailman id 159895; Thu, 22 Jul 2021 23:35:52 +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 1m6iEK-0000f9-Ob for xen-devel@lists.xenproject.org; Thu, 22 Jul 2021 23:35:52 +0000 Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 8d0e6356-eb45-11eb-915d-12813bfff9fa; Thu, 22 Jul 2021 23:35:52 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id B1C6960E9B; Thu, 22 Jul 2021 23:35:50 +0000 (UTC) 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: 8d0e6356-eb45-11eb-915d-12813bfff9fa DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1626996951; bh=uRaLjw6VB1c05J5Qt/N9VfYDhHaUGrCYIOKQcLJuqKM=; h=Date:From:To:cc:Subject:From; b=QF3zKzBnO8oQjE2PYl2dyyeZNDx18x+FtaafOXk9s+Y92M+8PJvMkXhaav2Rnux7A bMvwTzzXXtg0e40jarLN6fB5/cvPrav0trHHdZNTLrhoRrdDRT+ThHJ67oZe7JBUI4 9gdd2L1p1Nec/CTddG6jMzAIrNhCMeSkYBpayWhsItenaroX4LAxcB9oP7wRyyJUEp kfCHDoc/XHqhIx0Pb48nznxZXxYQa8gidfsEnHKY+BNcFdqBri5OL42wXrh+xC+Xh3 g6hhPqh4ZWZolhI6vb3ABoZWrxCF1hhtqcqn6WNMQPwmcFfSbE+PqRY99PHWZdyD+6 wFKbljiIpDoPg== Date: Thu, 22 Jul 2021 16:35:50 -0700 (PDT) From: Stefano Stabellini X-X-Sender: sstabellini@sstabellini-ThinkPad-T480s To: xen-devel@lists.xenproject.org cc: sstabellini@kernel.org, julien@xen.org, Bertrand.Marquis@arm.com, Volodymyr_Babchuk@epam.com, rahul.singh@arm.com, brian.woods@xilinx.com Subject: [PATCH v5 0/4] Generic SMMU Bindings Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Hi all, This series introduces support for the generic SMMU bindings to xen/drivers/passthrough/arm/smmu.c. Cheers, Stefano Brian Woods (3): arm,smmu: switch to using iommu_fwspec functions arm,smmu: restructure code in preparation to new bindings support arm,smmu: add support for generic DT bindings. Implement add_device and dt_xlate. Stefano Stabellini (1): xen: do not return -EEXIST if iommu_add_dt_device is called twice xen/drivers/passthrough/arm/smmu.c | 141 +++++++++++++++++++++++++--------- xen/drivers/passthrough/device_tree.c | 26 ++----- 2 files changed, 114 insertions(+), 53 deletions(-)