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.151; helo=mga17.intel.com; envelope-from=hao.a.wu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) (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 2587F2194EB7C for ; Mon, 1 Apr 2019 22:15:49 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Apr 2019 22:15:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,298,1549958400"; d="scan'208";a="334152978" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.8]) by fmsmga005.fm.intel.com with ESMTP; 01 Apr 2019 22:15:48 -0700 From: Hao Wu To: edk2-devel@lists.01.org Cc: Hao Wu , Ray Ni , Eric Dong , Jian J Wang Date: Tue, 2 Apr 2019 13:15:44 +0800 Message-Id: <20190402051546.8244-1-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 Subject: [PATCH v1 0/2] Add PEI BlockIO support for ATA AHCI mode devices X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Apr 2019 05:15:50 -0000 The series is also available at: https://github.com/hwu25/edk2/tree/ahci_pei_blockio_v1 The series will add the PEI BlockIO support for ATA AHCI mode devices. Cc: Ray Ni Cc: Eric Dong Cc: Jian J Wang Hao Wu (2): MdeModulePkg/AhciPei: Limit max transfer blocknum for 48-bit address MdeModulePkg/AhciPei: Add PEI BlockIO support MdeModulePkg/Bus/Ata/AhciPei/AhciPei.inf | 4 + MdeModulePkg/Bus/Ata/AhciPei/AhciPei.h | 30 ++ MdeModulePkg/Bus/Ata/AhciPei/AhciPeiBlockIo.h | 264 ++++++++++ MdeModulePkg/Bus/Ata/AhciPei/AhciMode.c | 125 ++++- MdeModulePkg/Bus/Ata/AhciPei/AhciPei.c | 35 +- MdeModulePkg/Bus/Ata/AhciPei/AhciPeiBlockIo.c | 533 ++++++++++++++++++++ 6 files changed, 989 insertions(+), 2 deletions(-) create mode 100644 MdeModulePkg/Bus/Ata/AhciPei/AhciPeiBlockIo.h create mode 100644 MdeModulePkg/Bus/Ata/AhciPei/AhciPeiBlockIo.c -- 2.12.0.windows.1