From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.120; helo=mga04.intel.com; envelope-from=hao.a.wu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 192F52034AB1B for ; Mon, 30 Oct 2017 21:14:22 -0700 (PDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Oct 2017 21:18:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,322,1505804400"; d="scan'208";a="1237536491" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.13]) by fmsmga002.fm.intel.com with ESMTP; 30 Oct 2017 21:18:12 -0700 From: Hao Wu To: edk2-devel@lists.01.org Cc: Hao Wu , Star Zeng , Jiewen Yao Date: Tue, 31 Oct 2017 12:16:39 +0800 Message-Id: <20171031041641.20216-1-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 Subject: [PATCH 0/2] IoMMu support for SD/eMMC PEI stack X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2017 04:14:23 -0000 The series adds the IoMMu support for the SD/eMMC PEI stack. Cc: Star Zeng Cc: Jiewen Yao Hao Wu (2): MdeModulePkg/EmmcBlockIoPei: Support IoMmu MdeModulePkg/SdBlockIoPei: Support IoMmu MdeModulePkg/Bus/Sd/EmmcBlockIoPei/DmaMem.c | 249 ++++++++++++++++++++ MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcBlockIoPei.c | 44 +++- MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcBlockIoPei.h | 141 ++++++++++- MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcBlockIoPei.inf | 5 +- MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHcMem.c | 23 +- MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHcMem.h | 4 +- MdeModulePkg/Bus/Sd/EmmcBlockIoPei/EmmcHci.c | 36 ++- MdeModulePkg/Bus/Sd/SdBlockIoPei/DmaMem.c | 249 ++++++++++++++++++++ MdeModulePkg/Bus/Sd/SdBlockIoPei/SdBlockIoPei.c | 44 +++- MdeModulePkg/Bus/Sd/SdBlockIoPei/SdBlockIoPei.h | 141 ++++++++++- MdeModulePkg/Bus/Sd/SdBlockIoPei/SdBlockIoPei.inf | 5 +- MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHcMem.c | 23 +- MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHcMem.h | 4 +- MdeModulePkg/Bus/Sd/SdBlockIoPei/SdHci.c | 36 ++- 14 files changed, 966 insertions(+), 38 deletions(-) create mode 100644 MdeModulePkg/Bus/Sd/EmmcBlockIoPei/DmaMem.c create mode 100644 MdeModulePkg/Bus/Sd/SdBlockIoPei/DmaMem.c -- 2.12.0.windows.1