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.web12.5270.1634113915178839586 for ; Wed, 13 Oct 2021 01:32:03 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=U4LkAaLE; spf=temperror, err=temporary DNS error (domain: hpe.com, ip: 148.163.143.35, mailfrom: prvs=0920c234db=nickle.wang@hpe.com) Received: from pps.filterd (m0134425.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 19D54oF2012259; Wed, 13 Oct 2021 08:31:41 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=3h/nz71lEFo9zcUgV68eblxMEO+y3CjpeCuz9VExVCw=; b=U4LkAaLEbogjReEMAwSxuYaQsV292B7am5neNRJTMn9aqqup4241ti+IsGG3VC5lLuZp 2LDkw4jrWOij/Vvdrut+xATiDWHC5eu10uiT1OcakMYBNWsxzBzTsQh3WRQcRs04Hlya ZqibeP9V+d8wBRdTTp4BphamqnhpLs3SNKnXqZQE/RgDkG/9Ytchb+nYA/c/KhVTmOax p20PFvKvaQ+XlKuBYUUjwj2+ZBpRA4iC+NbF4InlkzfRo4UOR3QPpKF54qFKCpgnxyxf B6yJPh9EZqZUPTn3KlaYNeTAdk4t2uTscCqGlFW0KWornz4biXUpYorpyxnCuzSvVJvH Qg== Received: from g4t3425.houston.hpe.com (g4t3425.houston.hpe.com [15.241.140.78]) by mx0b-002e3701.pphosted.com with ESMTP id 3bnkbabpsu-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 13 Oct 2021 08:31:41 +0000 Received: from g4t3433.houston.hpecorp.net (g4t3433.houston.hpecorp.net [16.208.49.245]) by g4t3425.houston.hpe.com (Postfix) with ESMTP id 90E30A9; Wed, 13 Oct 2021 08:31:40 +0000 (UTC) Received: from WVE00YQZQF.asiapacific.hpqcorp.net (unknown [16.168.161.152]) by g4t3433.houston.hpecorp.net (Postfix) with ESMTP id 0CDDD46; Wed, 13 Oct 2021 08:31:37 +0000 (UTC) From: "Nickle Wang" To: devel@edk2.groups.io Cc: Nickle Wang , Abner Chang , Liming Gao Subject: [PATCH 0/1] RedfishClientPkg: Facilities of EDK2 Redfish Feature Driver Date: Wed, 13 Oct 2021 16:31:04 +0800 Message-Id: <20211013083105.1993-1-nickle.wang@hpe.com> X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: Q_j44Qa87Tet-E6W8LewRlLk4htGaMS6 X-Proofpoint-GUID: Q_j44Qa87Tet-E6W8LewRlLk4htGaMS6 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-13_02,2021-10-13_01,2020-04-07_01 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 mlxlogscore=764 lowpriorityscore=0 clxscore=1011 malwarescore=0 adultscore=0 priorityscore=1501 spamscore=0 phishscore=0 mlxscore=0 bulkscore=0 suspectscore=0 impostorscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2109230001 definitions=main-2110130057 Content-Transfer-Encoding: 8bit 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): 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