From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 DD5D021A07AB5 for ; Tue, 4 Jul 2017 22:03:47 -0700 (PDT) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jul 2017 22:05:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,310,1496127600"; d="scan'208";a="874845462" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.13]) by FMSMGA003.fm.intel.com with ESMTP; 04 Jul 2017 22:05:25 -0700 From: Hao Wu To: edk2-devel@lists.01.org Cc: Hao Wu , Ruiyu Ni , Star Zeng Date: Wed, 5 Jul 2017 13:05:21 +0800 Message-Id: <20170705050524.24328-1-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 Subject: [PATCH 0/3] Disk Information Protocol for SD/MMC devices 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: Wed, 05 Jul 2017 05:03:48 -0000 Per PI 1.6 spec, add Disk Information Protocol support in SD/MMC devices. Cc: Ruiyu Ni Cc: Star Zeng Hao Wu (3): MdePkg/DiskInfo.h: Add the SD/MMC interface GUID definition MdeModulePkg/SdDxe: Implementation of Disk Information Protocol MdeModulePkg/EmmcDxe: Implementation of Disk Information Protocol MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.c | 140 +++++++++++++++++++++++++++++ MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.h | 115 ++++++++++++++++++++++++ MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.c | 15 +++- MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.h | 9 +- MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.inf | 5 +- MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.c | 138 ++++++++++++++++++++++++++++ MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.h | 115 ++++++++++++++++++++++++ MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c | 13 ++- MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h | 9 +- MdeModulePkg/Bus/Sd/SdDxe/SdDxe.inf | 5 +- MdePkg/Include/Protocol/DiskInfo.h | 13 ++- MdePkg/MdePkg.dec | 6 ++ 12 files changed, 575 insertions(+), 8 deletions(-) create mode 100644 MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.c create mode 100644 MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDiskInfo.h create mode 100644 MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.c create mode 100644 MdeModulePkg/Bus/Sd/SdDxe/SdDiskInfo.h -- 2.12.0.windows.1