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 1937421E1B760 for ; Thu, 21 Sep 2017 00:27:10 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Sep 2017 00:30:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,424,1500966000"; d="scan'208";a="154342769" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga006.fm.intel.com with ESMTP; 21 Sep 2017 00:30:16 -0700 Received: from fmsmsx152.amr.corp.intel.com (10.18.125.5) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 21 Sep 2017 00:30:16 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX152.amr.corp.intel.com (10.18.125.5) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 21 Sep 2017 00:30:15 -0700 Received: from shsmsx152.ccr.corp.intel.com ([169.254.6.93]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.152]) with mapi id 14.03.0319.002; Thu, 21 Sep 2017 15:30:14 +0800 From: "Gao, Liming" To: "Bi, Dandan" , "edk2-devel@lists.01.org" CC: "Dong, Eric" Thread-Topic: [PATCH V5 0/6] Support bitfield in storage of vfr Thread-Index: AQHTMev8azwkQAhVkkqkyCQTlIdy1aK+8xNw Date: Thu, 21 Sep 2017 07:30:13 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E15BA4C@SHSMSX152.ccr.corp.intel.com> References: <1505896748-436688-1-git-send-email-dandan.bi@intel.com> In-Reply-To: <1505896748-436688-1-git-send-email-dandan.bi@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH V5 0/6] Support bitfield in storage of vfr 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: Thu, 21 Sep 2017 07:27:10 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: Bi, Dandan >Sent: Wednesday, September 20, 2017 4:39 PM >To: edk2-devel@lists.01.org >Cc: Dong, Eric ; Gao, Liming >Subject: [PATCH V5 0/6] Support bitfield in storage of vfr > >REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D545 > >This patch series is to: >(1) Update VfrCompiler to parse bit field in data structure. >(2) Update HiiDatabase,SetupBrowser and UefiHiiLib to handle questions wit= h >Bit VarStore. >(3) Add sample questions with bit/union VarStore in DriverSample. > >Cc: Eric Dong >Cc: Liming Gao > >Dandan Bi (6): > BaseTool/VfrCompiler: Support Bit fields in EFI/Buffer VarStore > MdeModulePkg: Add GUID/flags to implement BitField support > MdeModulePkg/UefiHiiLib: Validate question with bit fields > MdeModulePkg/HiiDatabase: Handle questions with Bit VarStore > MdeModulePkg/SetupBrowser: Handle questions with Bit VarStore > MdeModulePkg/DriverSample: Add questions with bit/union VarStore > > BaseTools/Source/C/Include/Common/MdeModuleHii.h | 20 +- > BaseTools/Source/C/VfrCompile/VfrError.cpp | 3 +- > BaseTools/Source/C/VfrCompile/VfrError.h | 3 +- > BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp | 105 +- > BaseTools/Source/C/VfrCompile/VfrFormPkg.h | 52 +- > BaseTools/Source/C/VfrCompile/VfrSyntax.g | 1238 +++++++++++++--= -- >--- > BaseTools/Source/C/VfrCompile/VfrUtilityLib.cpp | 240 +++- > BaseTools/Source/C/VfrCompile/VfrUtilityLib.h | 23 +- > MdeModulePkg/Include/Guid/MdeModuleHii.h | 20 +- > MdeModulePkg/Library/UefiHiiLib/HiiLib.c | 246 ++-- > MdeModulePkg/Library/UefiHiiLib/InternalHiiLib.h | 4 +- > MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf | 5 +- > MdeModulePkg/MdeModulePkg.dec | 4 + > .../Universal/DriverSampleDxe/DriverSample.c | 120 ++ > .../Universal/DriverSampleDxe/DriverSample.h | 2 + > .../Universal/DriverSampleDxe/NVDataStruc.h | 34 +- > MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr | 172 +++ > .../Universal/DriverSampleDxe/VfrStrings.uni | 63 + > .../Universal/HiiDatabaseDxe/ConfigRouting.c | 346 +++++- > .../Universal/HiiDatabaseDxe/HiiDatabase.h | 6 +- > .../Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf | 3 +- > MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c | 138 ++- > MdeModulePkg/Universal/SetupBrowserDxe/Setup.c | 117 +- > MdeModulePkg/Universal/SetupBrowserDxe/Setup.h | 3 + > .../Universal/SetupBrowserDxe/SetupBrowserDxe.inf | 3 +- > 25 files changed, 2323 insertions(+), 647 deletions(-) > >-- >1.9.5.msysgit.1