public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH edk2-platforms v1 00/12] Fix D06 SBSA/SBBR issue and improve
@ 2018-10-29  3:32 Ming Huang
  2018-10-29  3:32 ` [PATCH edk2-platforms v1 01/12] Silicon/Hisilicon/D06: Add watchdog to GTDT Ming Huang
                   ` (12 more replies)
  0 siblings, 13 replies; 35+ messages in thread
From: Ming Huang @ 2018-10-29  3:32 UTC (permalink / raw)
  To: leif.lindholm, linaro-uefi, edk2-devel, graeme.gregory
  Cc: ard.biesheuvel, michael.d.kinney, lersek, wanghuiqiang,
	huangming23, zhangjinsong2, huangdaode, john.garry, xinliang.liu,
	zhangfeng56, Ming Huang

The major features of this patchset include:
1. Modify acpi table for ACS test;
2. Enable secure boot for SBBR-SCT;
3. Other change for ACS test;

For this SCT issue:
RT.SetVariable - Create one Time Base Auth Variable, the expect return status
should be EFI_SUCCESS – FAILURE

The resule of fail is effected by the edk2 commit(67943427).
If Modify Variable.c as below, this case will pass.
--- a/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
+++ b/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
@@ -3188,7 +3188,7 @@ VariableServiceSetVariable (
     //  Maybe it's the delete operation of common authenticated variable at
     //  user physical presence.
     //
     if (DataSize != AUTHINFO_SIZE) {
-      return EFI_UNSUPPORTED;
+      return EFI_SECURITY_VIOLATION;

I supect ACS SCT compatible with UEFI 2.7 spec. We will analyze this issue
continue.

Code can also be found in github:
https://github.com/hisilicon/OpenPlatformPkg.git
branch: d06-acs-platforms


Ming Huang (12):
  Silicon/Hisilicon/D06: Add watchdog to GTDT
  Silicon/Hisilicon/D06: Drop _CID for fwts issue
  Silicon/Hisilicon/D06: Fix fwts issue in Dbg2
  Silicon/Hisilicon/D06: Fix fwts issue in FADT
  Hisilicon/D06: Move some functions to OemMiscLib
  Silicon/Hisilicon: Modify for SBBR fwts SetTime_Func test case
  Hisilicon/D0x: Fix secure boot bug in FlashFvbDxe
  Hisilicon/D06: Fix SBBR-SCT AuthVar issue
  Silicon/Hisilicon/D06: Reserve ECAM resource in DSDT
  Silicon/Hisilicon/D06: Modify GTDT timer flag
  Hisilicon/D06: Modify Gic base
  Silicon/Hisilicon/D06: Set TA as Node 0 for TA boot

 Silicon/Hisilicon/HisiPkg.dec                 |   1 +
 Silicon/Hisilicon/Hisilicon.dsc.inc           |  16 ++
 Platform/Hisilicon/D03/D03.dsc                |   5 +
 Platform/Hisilicon/D05/D05.dsc                |   5 +
 Platform/Hisilicon/D06/D06.dsc                |   9 +-
 .../Drivers/FlashFvbDxe/FlashFvbDxe.inf       |   2 +
 .../M41T83RealTimeClockLib.inf                |   3 +-
 .../Hi1620/Hi1620AcpiTables/Hi1620Platform.h  |   2 +-
 .../Hisilicon/Include/Library/OemMiscLib.h    |   9 +
 .../M41T83RealTimeClock.h                     |   8 +-
 .../D06/Library/OemMiscLibD06/OemMiscLibD06.c |  82 ++++++
 .../Drivers/FlashFvbDxe/FlashFvbDxe.c         |  14 +-
 .../M41T83RealTimeClockLib.c                  | 263 ++++++++++++------
 .../Hi1620/Hi1620AcpiTables/Dsdt/Com.asl      |   1 -
 .../Hi1620AcpiTables/Dsdt/Hi1620Mbig.asl      |  48 ----
 .../Hi1620AcpiTables/Dsdt/Hi1620Pci.asl       |  36 ++-
 .../Hi1620/Hi1620AcpiTables/Fadt.aslc         |   2 +-
 .../Hi1620/Hi1620AcpiTables/Gtdt.aslc         |  35 +--
 .../Hi1620/Hi1620AcpiTables/Hi1620Dbg2.aslc   |   4 +-
 .../Hi1620/Hi1620AcpiTables/Hi1620Iort.asl    |  18 +-
 .../Hi1620/Hi1620AcpiTables/Hi1620Srat.aslc   | 194 ++++++-------
 .../Hi1620/Hi1620AcpiTables/MadtHi1620.aslc   |   2 +-
 22 files changed, 475 insertions(+), 284 deletions(-)

-- 
2.18.0



^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2018-11-15  7:09 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-29  3:32 [PATCH edk2-platforms v1 00/12] Fix D06 SBSA/SBBR issue and improve Ming Huang
2018-10-29  3:32 ` [PATCH edk2-platforms v1 01/12] Silicon/Hisilicon/D06: Add watchdog to GTDT Ming Huang
2018-11-14  0:39   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 02/12] Silicon/Hisilicon/D06: Drop _CID for fwts issue Ming Huang
2018-11-14  0:48   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 03/12] Silicon/Hisilicon/D06: Fix fwts issue in Dbg2 Ming Huang
2018-11-14  0:50   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 04/12] Silicon/Hisilicon/D06: Fix fwts issue in FADT Ming Huang
2018-11-14  0:50   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 05/12] Hisilicon/D06: Move some functions to OemMiscLib Ming Huang
2018-11-14  0:04   ` Leif Lindholm
2018-11-14 14:30     ` Ming Huang
2018-10-29  3:32 ` [PATCH edk2-platforms v1 06/12] Silicon/Hisilicon: Modify for SBBR fwts SetTime_Func test case Ming Huang
     [not found]   ` <20181113235222.amykmhqlh5gltg7p@bivouac.eciton.net>
2018-11-14 14:31     ` Ming Huang
2018-11-14 17:20       ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 07/12] Hisilicon/D0x: Fix secure boot bug in FlashFvbDxe Ming Huang
2018-11-13 23:57   ` Leif Lindholm
2018-11-15  7:09     ` Ming Huang
2018-10-29  3:32 ` [PATCH edk2-platforms v1 08/12] Hisilicon/D06: Fix SBBR-SCT AuthVar issue Ming Huang
2018-11-14  0:18   ` Leif Lindholm
2018-11-14 14:31     ` Ming Huang
2018-10-29  3:32 ` [PATCH edk2-platforms v1 09/12] Silicon/Hisilicon/D06: Reserve ECAM resource in DSDT Ming Huang
2018-11-14  0:23   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 10/12] Silicon/Hisilicon/D06: Modify GTDT timer flag Ming Huang
2018-11-14  0:24   ` Leif Lindholm
2018-10-29  3:32 ` [PATCH edk2-platforms v1 11/12] Hisilicon/D06: Modify Gic base Ming Huang
2018-11-14  0:29   ` Leif Lindholm
2018-11-14 14:31     ` Ming Huang
2018-10-29  3:32 ` [PATCH edk2-platforms v1 12/12] Silicon/Hisilicon/D06: Set TA as Node 0 for TA boot Ming Huang
2018-11-14  0:36   ` Leif Lindholm
2018-11-14 14:32     ` Ming Huang
2018-10-29 11:43 ` [PATCH edk2-platforms v1 00/12] Fix D06 SBSA/SBBR issue and improve Leif Lindholm
2018-10-29 15:01   ` Ming Huang
2018-10-29 16:14     ` Leif Lindholm
     [not found]       ` <5eaaf9d7-e76b-2e98-f4c8-bb0a27007cfc@huawei.com>
2018-10-30  9:37         ` Leif Lindholm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox