From: Leif Lindholm <leif.lindholm@linaro.org>
To: Ming Huang <ming.huang@linaro.org>
Cc: linaro-uefi@lists.linaro.org, edk2-devel@lists.01.org,
graeme.gregory@linaro.org, ard.biesheuvel@linaro.org,
michael.d.kinney@intel.com, lersek@redhat.com,
wanghuiqiang@huawei.com, huangming23@huawei.com,
zhangjinsong2@huawei.com, huangdaode@hisilicon.com,
john.garry@huawei.com, xinliang.liu@linaro.org,
zhangfeng56@huawei.com
Subject: Re: [PATCH edk2-platforms v1 00/12] Fix D06 SBSA/SBBR issue and improve
Date: Mon, 29 Oct 2018 16:14:05 +0000 [thread overview]
Message-ID: <20181029161405.jpem6zmtgf3f6my3@bivouac.eciton.net> (raw)
In-Reply-To: <b7d5d811-18c4-c544-e941-4cd74b43585c@linaro.org>
On Mon, Oct 29, 2018 at 11:01:19PM +0800, Ming Huang wrote:
> Hi Leif,
>
> Yes, I generated this patchset with the same git configuration as previous patchset:
> ([PATCH edk2-platforms v5 00/28] Upload for D06 platform)
> and use the same command:
> git format-patch --stat=1000 --stat-graph-width=20 --cover-letter --no-binary --subject-prefix="PATCH edk2-platforms" -12 -v 1 -o v1
>
> I check the URL below, no important different configuration found.
> Have problems with this patchset?
See below:
> Thanks,
> Ming
>
> On 10/29/2018 7:43 PM, Leif Lindholm wrote:
> > Hi Ming,
> >
> > On Mon, Oct 29, 2018 at 11:32:37AM +0800, Ming Huang wrote:
> >> 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 +-
These ... suggest --stat=1000 was not used. Can you verify please?
Regards,
Leif
next prev parent reply other threads:[~2018-10-29 16:14 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
[not found] ` <5eaaf9d7-e76b-2e98-f4c8-bb0a27007cfc@huawei.com>
2018-10-30 9:37 ` Leif Lindholm
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181029161405.jpem6zmtgf3f6my3@bivouac.eciton.net \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox