From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0a-002e3701.pphosted.com (mx0a-002e3701.pphosted.com [148.163.147.86]) by mx.groups.io with SMTP id smtpd.web08.3119.1627401005781235805 for ; Tue, 27 Jul 2021 08:50:05 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=PCAFOnSf; spf=permerror, err=parse error for token &{10 18 %{ir}.%{v}.%{d}.spf.has.pphosted.com}: invalid domain name (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=084293f174=abner.chang@hpe.com) Received: from pps.filterd (m0134420.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 16RFmj90013307; Tue, 27 Jul 2021 15:49:58 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id; s=pps0720; bh=p5cugGc1atXzXzsUpsCMc3mBGqPFSaZ7sqHTNyGX878=; b=PCAFOnSf2jHrL1qXvMyBXwgMeT91ln5EyE3e8jQvpyEJ52/vEsIspqY978sn7L1eV9jt Rzkc/LuCAhz3L8zI2KHrDRIvCtQhwqrkfM37Fc81t2/5N4VPL7lczo1KNC9QNqLfj3Hx NurIfT1l044WEUXBoBBW1gO0Alpm+1f2u2vpK94T9K9nlxUKChoaRo2/Cgv7WQdbNm/p Of8L9TcYBJqKrUtrgMYHBaTqNypGY+okAaFY0nnsjVSINXKmd3tgJCOpYI7NY+0DZGwx m0ydJaZpuC8U9VEUYevCb+ABGm95Us/5X1NgKJ9r8GLREckAfWL8HWYawc7tEZSRsh+9 /A== Received: from g4t3425.houston.hpe.com (g4t3425.houston.hpe.com [15.241.140.78]) by mx0b-002e3701.pphosted.com with ESMTP id 3a23660ghm-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 27 Jul 2021 15:49:58 +0000 Received: from g9t2301.houston.hpecorp.net (g9t2301.houston.hpecorp.net [16.220.97.129]) by g4t3425.houston.hpe.com (Postfix) with ESMTP id A45139D; Tue, 27 Jul 2021 15:49:57 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g9t2301.houston.hpecorp.net (Postfix) with ESMTP id 8ACA348; Tue, 27 Jul 2021 15:49:56 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Liming Gao Subject: [staging/edk2-redfish-client RedfishFeatureCore PATCH 0/3] RedfishFeatureCoreDxe Date: Tue, 27 Jul 2021 22:54:39 +0800 Message-Id: <20210727145442.22840-1-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 X-Proofpoint-ORIG-GUID: rMS5SSa-lMpDuZQ70538j3vC4Lgz-kwb X-Proofpoint-GUID: rMS5SSa-lMpDuZQ70538j3vC4Lgz-kwb X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391,18.0.790 definitions=2021-07-27_10:2021-07-27,2021-07-27 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 clxscore=1015 mlxscore=0 malwarescore=0 lowpriorityscore=0 mlxlogscore=580 priorityscore=1501 bulkscore=0 spamscore=0 impostorscore=0 adultscore=0 phishscore=0 suspectscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2107140000 definitions=main-2107270095 Patch of EDKII Redfish Feature Core DXE driver. EDKII Redfish Feature Core DXE driver provides the protocol interface to the auto-generated Redfish feature driver to register itself for the Redfish resource URI it manages. You can skip 0003 patch which is the diagrams. Signed-off-by: Abner Chang Cc: Nickle Wang Cc: Liming Gao Abner Chang (3): RedfishClientPkg: Initial commit of meta files RedfishClientPkg/RedfishFeatureCoreDxe: Redfish Feature Core DXE driver RedfishClientPkg/Document: Update diagrams RedfishClientPkg/RedfishClientPkg.dec | 35 ++ RedfishClientPkg/RedfishClient.dsc.inc | 21 + .../RedfishClientComponents.dsc.inc | 18 + RedfishClientPkg/RedfishClientDefines.dsc.inc | 27 ++ RedfishClientPkg/RedfishClientLibs.dsc.inc | 13 + RedfishClientPkg/RedfishClientPkg.dsc | 46 +++ RedfishClientPkg/RedfishClient.fdf.inc | 15 + .../RedfishFeatureCoreDxe.inf | 49 +++ .../Include/Protocol/EdkIIRedfishFeature.h | 116 ++++++ .../RedfishFeatureCoreDxe.h | 43 ++ .../RedfishFeatureCoreDxe.c | 382 ++++++++++++++++++ RedfishClientPkg/Readme.md | 36 ++ .../Media/RedfishClientDriverStack.svg | 197 ++++++--- 13 files changed, 936 insertions(+), 62 deletions(-) create mode 100644 RedfishClientPkg/RedfishClientPkg.dec create mode 100644 RedfishClientPkg/RedfishClient.dsc.inc create mode 100644 RedfishClientPkg/RedfishClientComponents.dsc.inc create mode 100644 RedfishClientPkg/RedfishClientDefines.dsc.inc create mode 100644 RedfishClientPkg/RedfishClientLibs.dsc.inc create mode 100644 RedfishClientPkg/RedfishClientPkg.dsc create mode 100644 RedfishClientPkg/RedfishClient.fdf.inc create mode 100644 RedfishClientPkg/RedfishFeatureCoreDxe/RedfishFeatureCoreDxe.inf create mode 100644 RedfishClientPkg/Include/Protocol/EdkIIRedfishFeature.h create mode 100644 RedfishClientPkg/RedfishFeatureCoreDxe/RedfishFeatureCoreDxe.h create mode 100644 RedfishClientPkg/RedfishFeatureCoreDxe/RedfishFeatureCoreDxe.c -- 2.17.1