From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0b-002e3701.pphosted.com (mx0b-002e3701.pphosted.com [148.163.143.35]) by mx.groups.io with SMTP id smtpd.web08.27361.1635130089860509820 for ; Sun, 24 Oct 2021 19:48:18 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=mBOxvGmG; spf=temperror, err=temporary DNS error (domain: hpe.com, ip: 148.163.143.35, mailfrom: prvs=0932ea4fe9=nickle.wang@hpe.com) Received: from pps.filterd (m0134423.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 19OLWDg2012443; Mon, 25 Oct 2021 02:47:56 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding; s=pps0720; bh=kWtgjJtG2uqAmC+81Daw5WOCX2UmOxqXUmji4rKglW4=; b=mBOxvGmGH4s6UkB6mU70kQK8RaoRKJGhMa28eOaOAIcgVAeVVAIDF92sfD7QDEtZANTD kCalAcldUkdLbY55eODUneA22oDukfLfCPPomV2GbQw2qVMqTUGfYJVQxY7YfVEcIu/T yjN87DcAeuRvDAyoC+Ah29wCsgk7gNz0IYe9Oq6nCJoCBDWksp2hx/1cnxlqhmW2voMW pDiHJwHOQnJSEE0LuXOnRhbJLYvYgGdCmHloYphtERncaPG46P6Oehh5HPkaWJAKkeDr kZ+gCDM6iw7/8BS/SVIq/YRYna06Hkw4gXZX8xom1LQTVTRR2y3ycs6I/2f34p4zRJmb 1A== Received: from g4t3425.houston.hpe.com (g4t3425.houston.hpe.com [15.241.140.78]) by mx0b-002e3701.pphosted.com with ESMTP id 3bw92kjgwb-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 25 Oct 2021 02:47:56 +0000 Received: from g4t3433.houston.hpecorp.net (g4t3433.houston.hpecorp.net [16.208.49.245]) by g4t3425.houston.hpe.com (Postfix) with ESMTP id E5512B8; Mon, 25 Oct 2021 02:47:55 +0000 (UTC) Received: from WVE00YQZQF.asiapacific.hpqcorp.net (unknown [16.168.161.139]) by g4t3433.houston.hpecorp.net (Postfix) with ESMTP id 4EC4248; Mon, 25 Oct 2021 02:47:52 +0000 (UTC) From: "Nickle Wang" To: devel@edk2.groups.io Cc: Nickle Wang , Abner Chang , Liming Gao Subject: [PATCH V2 0/1] staging/RedfishClientPkg: Facilities of EDK2 Redfish Feature driver Env. Date: Mon, 25 Oct 2021 10:47:30 +0800 Message-Id: <20211025024731.224-1-nickle.wang@hpe.com> X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: TLcRzPCX3d1pZSA67u_6cF1WorhkRipg X-Proofpoint-GUID: TLcRzPCX3d1pZSA67u_6cF1WorhkRipg X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.0.607.475 definitions=2021-10-24_07,2021-10-25_01,2020-04-07_01 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 adultscore=0 clxscore=1015 lowpriorityscore=0 malwarescore=0 bulkscore=0 phishscore=0 mlxlogscore=799 spamscore=0 impostorscore=0 priorityscore=1501 mlxscore=0 suspectscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2109230001 definitions=main-2110250015 Content-Transfer-Encoding: 8bit Address V1 review comment. This commit adds below protocol and common header files for Redfish feature drivers. - edk2 Redfish resource config protocol: this protocol is used by feature drivers for internal communication - Redfish collection and resource common header file: these two files are the common definition of Redfish client feature drivers. - Redfish client package token space: the GUID definition of Redfish client package token space. Signed-off-by: Nickle Wang Cc: Abner Chang Cc: Liming Gao Nickle Wang (1): staging/RedfishClientPkg: Facilities of EDK2 Redfish Feature driver Env. .../Include/Guid/RedfishClientPkgTokenSpace.h | 20 +++ .../EdkIIRedfishResourceConfigProtocol.h | 129 ++++++++++++++++++ .../Include/RedfishCollectionCommon.h | 53 +++++++ .../Include/RedfishResourceCommon.h | 123 +++++++++++++++++ RedfishClientPkg/RedfishClientPkg.dec | 8 +- 5 files changed, 332 insertions(+), 1 deletion(-) create mode 100644 RedfishClientPkg/Include/Guid/RedfishClientPkgTokenSpace.h create mode 100644 RedfishClientPkg/Include/Protocol/EdkIIRedfishResourceConfigProtocol.h create mode 100644 RedfishClientPkg/Include/RedfishCollectionCommon.h create mode 100644 RedfishClientPkg/Include/RedfishResourceCommon.h -- 2.31.1.windows.1