From patchwork Wed Apr 26 10:06:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Liu, Yi L" X-Patchwork-Id: 9701011 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 30B8D603F6 for ; Wed, 26 Apr 2017 10:28:15 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0847E28450 for ; Wed, 26 Apr 2017 10:28:15 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EF928285EF; Wed, 26 Apr 2017 10:28:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 9B39228450 for ; Wed, 26 Apr 2017 10:28:14 +0000 (UTC) Received: from localhost ([::1]:54052 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d3KBB-0005Pw-Ad for patchwork-qemu-devel@patchwork.kernel.org; Wed, 26 Apr 2017 06:28:13 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50595) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d3K7g-00037C-F4 for qemu-devel@nongnu.org; Wed, 26 Apr 2017 06:24:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d3K7e-0002a8-VZ for qemu-devel@nongnu.org; Wed, 26 Apr 2017 06:24:36 -0400 Received: from mga07.intel.com ([134.134.136.100]:30840) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d3K7e-0002Z6-Lp for qemu-devel@nongnu.org; Wed, 26 Apr 2017 06:24:34 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP; 26 Apr 2017 03:24:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,254,1488873600"; d="scan'208";a="79066513" Received: from sky-dev.bj.intel.com ([10.238.145.47]) by orsmga002.jf.intel.com with ESMTP; 26 Apr 2017 03:24:31 -0700 From: "Liu, Yi L" To: qemu-devel@nongnu.org, alex.williamson@redhat.com, peterx@redhat.com Date: Wed, 26 Apr 2017 18:06:44 +0800 Message-Id: <1493201210-14357-15-git-send-email-yi.l.liu@linux.intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1493201210-14357-1-git-send-email-yi.l.liu@linux.intel.com> References: <1493201210-14357-1-git-send-email-yi.l.liu@linux.intel.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 134.134.136.100 Subject: [Qemu-devel] [RFC PATCH 14/20] intel_iommu: add FOR_EACH_ASSIGN_DEVICE macro X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: tianyu.lan@intel.com, "Liu, Yi L" , kevin.tian@intel.com, yi.l.liu@intel.com, ashok.raj@intel.com, kvm@vger.kernel.org, jean-philippe.brucker@arm.com, jasowang@redhat.com, iommu@lists.linux-foundation.org, jacob.jun.pan@intel.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Add FOR_EACH_ASSIGN_DEVICE. It would be used to loop all assigned devices when processing guest pasid table linking and iommu cache invalidate propagation. Signed-off-by: Liu, Yi L --- hw/i386/intel_iommu.c | 32 ++++++++++++++++++++++++++++++++ hw/i386/intel_iommu_internal.h | 11 +++++++++++ 2 files changed, 43 insertions(+) diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c index 0c412d2..f291995 100644 --- a/hw/i386/intel_iommu.c +++ b/hw/i386/intel_iommu.c @@ -55,6 +55,38 @@ static int vtd_dbgflags = VTD_DBGBIT(GENERAL) | VTD_DBGBIT(CSR); #define VTD_DPRINTF(what, fmt, ...) do {} while (0) #endif +#define FOR_EACH_ASSIGN_DEVICE(__notify_info_type, \ + __opaque_type, \ + __hook_info, \ + __hook_fn) \ +do { \ + IntelIOMMUNotifierNode *node; \ + VTDNotifierIterator iterator; \ + int ret = 0; \ + __notify_info_type *notify_info; \ + __opaque_type *opaq; \ + int argsz; \ + argsz = sizeof(*notify_info) + sizeof(*opaq); \ + notify_info = g_malloc0(argsz); \ + QLIST_FOREACH(node, &(s->notifiers_list), next) { \ + VTDAddressSpace *vtd_as = node->vtd_as; \ + VTDContextEntry ce[2]; \ + iterator.bus = pci_bus_num(vtd_as->bus); \ + ret = vtd_dev_to_context_entry(s, iterator.bus, \ + vtd_as->devfn, &ce[0]); \ + if (ret != 0) { \ + continue; \ + } \ + iterator.sid = vtd_make_source_id(iterator.bus, vtd_as->devfn); \ + iterator.did = VTD_CONTEXT_ENTRY_DID(ce[0].hi); \ + iterator.host_sid = node->host_sid; \ + iterator.vtd_as = vtd_as; \ + iterator.ce = &ce[0]; \ + __hook_fn(&iterator, __hook_info, notify_info); \ + } \ + g_free(notify_info); \ +} while (0) + static void vtd_define_quad(IntelIOMMUState *s, hwaddr addr, uint64_t val, uint64_t wmask, uint64_t w1cmask) { diff --git a/hw/i386/intel_iommu_internal.h b/hw/i386/intel_iommu_internal.h index f2a7d12..5178398 100644 --- a/hw/i386/intel_iommu_internal.h +++ b/hw/i386/intel_iommu_internal.h @@ -439,6 +439,17 @@ typedef struct VTDRootEntry VTDRootEntry; #define VTD_EXT_CONTEXT_TT_NO_DEV_IOTLB (4ULL << 2) #define VTD_EXT_CONTEXT_TT_DEV_IOTLB (5ULL << 2) +struct VTDNotifierIterator { + VTDAddressSpace *vtd_as; + VTDContextEntry *ce; + uint16_t host_sid; + uint16_t sid; + uint16_t did; + uint8_t bus; +}; + +typedef struct VTDNotifierIterator VTDNotifierIterator; + /* Paging Structure common */ #define VTD_SL_PT_PAGE_SIZE_MASK (1ULL << 7) /* Bits to decide the offset for each level */