public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zeng, Star" <star.zeng@intel.com>
To: Julien Grall <julien.grall@linaro.org>, Laszlo Ersek <lersek@redhat.com>
Cc: edk2-devel@lists.01.org, star.zeng@intel.com
Subject: Re: [PATCH V2 10/15] ArmVirtXen: Use merged variable driver for emulated NV mode
Date: Mon, 21 Jan 2019 18:46:39 +0800	[thread overview]
Message-ID: <bb9b1db9-9b9e-ef95-119a-eaca97ac9f1f@intel.com> (raw)
In-Reply-To: <ab438e3e-c7b8-4bde-11c1-13226fa18412@linaro.org>

Hi Julien,

On 2019/1/18 2:59, Julien Grall wrote:
> Hi Star,
> 
> On 17/01/2019 01:26, Zeng, Star wrote:
>> On 2019/1/16 22:26, Julien Grall wrote:
>>> Hi Laszlo,
>>>
>>> On 15/01/2019 09:37, Laszlo Ersek wrote:
>>>> On 01/14/19 16:19, Star Zeng wrote:
>>>>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1323
>>>>> Merge EmuVariable and Real variable driver.
>>>>>
>>>>> The real variable driver has been updated to support emulated
>>>>> variable NV mode and the EmuVariableRuntimeDxe will be removed
>>>>> later, so use merged variable driver for emulated NV mode.
>>>>>
>>>>> Cc: Laszlo Ersek <lersek@redhat.com>
>>>>> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>>>>> Cc: Julien Grall <julien.grall@linaro.org>
>>>>> Contributed-under: TianoCore Contribution Agreement 1.1
>>>>> Signed-off-by: Star Zeng <star.zeng@intel.com>
>>>>> ---
>>>>>   ArmVirtPkg/ArmVirtXen.dsc | 9 +++++++--
>>>>>   ArmVirtPkg/ArmVirtXen.fdf | 4 ++--
>>>>>   2 files changed, 9 insertions(+), 4 deletions(-)
>>>>>
>>>>> diff --git a/ArmVirtPkg/ArmVirtXen.dsc b/ArmVirtPkg/ArmVirtXen.dsc
>>>>> index a29d8a4ae717..db85fb3402d0 100644
>>>>> --- a/ArmVirtPkg/ArmVirtXen.dsc
>>>>> +++ b/ArmVirtPkg/ArmVirtXen.dsc
>>>>> @@ -1,7 +1,7 @@
>>>>>   #
>>>>>   #  Copyright (c) 2011-2015, ARM Limited. All rights reserved.
>>>>>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
>>>>> -#  Copyright (c) 2015 - 2016, Intel Corporation. All rights 
>>>>> reserved.<BR>
>>>>> +#  Copyright (c) 2015 - 2019, Intel Corporation. All rights 
>>>>> reserved.<BR>
>>>>>   #
>>>>>   #  This program and the accompanying materials
>>>>>   #  are licensed and made available under the terms and conditions 
>>>>> of the BSD License
>>>>> @@ -101,6 +101,11 @@ [PcdsFixedAtBuild.common]
>>>>>     # Set terminal type to TtyTerm, the value encoded is 
>>>>> EFI_TTY_TERM_GUID
>>>>>     gArmVirtTokenSpaceGuid.PcdTerminalTypeGuidBuffer|{0x80, 0x6d, 
>>>>> 0x91, 0x7d, 0xb1, 0x5b, 0x8c, 0x45, 0xa4, 0x8f, 0xe2, 0x5f, 0xdd, 
>>>>> 0x51, 0xef, 0x94}
>>>>> +  #
>>>>> +  # Make VariableRuntimeDxe work at emulated non-volatile variable 
>>>>> mode.
>>>>> +  #
>>>>> +  gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable|TRUE
>>>>> +
>>>>>   [PcdsPatchableInModule.common]
>>>>>     #
>>>>>     # This will be overridden in the code
>>>>> @@ -172,7 +177,7 @@ [Components.common]
>>>>>     MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
>>>>>     MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
>>>>> - 
>>>>> MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf 
>>>>>
>>>>> +  MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
>>>>> MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf 
>>>>>
>>>>> MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
>>>>> diff --git a/ArmVirtPkg/ArmVirtXen.fdf b/ArmVirtPkg/ArmVirtXen.fdf
>>>>> index 50e670254d52..5655c0df2926 100644
>>>>> --- a/ArmVirtPkg/ArmVirtXen.fdf
>>>>> +++ b/ArmVirtPkg/ArmVirtXen.fdf
>>>>> @@ -1,7 +1,7 @@
>>>>>   #
>>>>>   #  Copyright (c) 2011-2015, ARM Limited. All rights reserved.
>>>>>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
>>>>> -#  Copyright (c) 2015 - 2017, Intel Corporation. All rights 
>>>>> reserved.<BR>
>>>>> +#  Copyright (c) 2015 - 2019, Intel Corporation. All rights 
>>>>> reserved.<BR>
>>>>>   #
>>>>>   #  This program and the accompanying materials
>>>>>   #  are licensed and made available under the terms and conditions 
>>>>> of the BSD License
>>>>> @@ -137,7 +137,7 @@ [FV.FvMain]
>>>>>     INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
>>>>>     INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
>>>>> -  INF 
>>>>> MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf 
>>>>>
>>>>> +  INF 
>>>>> MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
>>>>>     INF 
>>>>> MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf 
>>>>>
>>>>>     INF 
>>>>> MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
>>>>>
>>>>
>>>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>>>>
>>>> Julien, can you please regression test this series on Xen? The repo URL
>>>> and the branch name are in the blurb.
>>>
>>> I will have a try and let you know the result.
>>
>> Thank you, Julien.
>> I think you can try based on V3 series although there is no essential 
>> difference between V2 and V3. :)
>>
>> Repo: git@github.com:lzeng14/edk2.git
>> Branch: MergedVariableDriver_EmuNvMode_V3
> 
> Thank you for the link. I am having trouble to get newer UEFI (without 
> your patch) running in a Xen guest. I have an old binary working.
> 
> I am not entirely sure why, I will let you know when I can test your 
> series.

I saw the discussion at 
https://lists.01.org/pipermail/edk2-devel/2019-January/035405.html. 
Fortunately, it has been fixed.
So I did rebase for the code.
Repo: git@github.com:lzeng14/edk2.git
Branch: MergedVariableDriver_EmuNvMode_V3_rebased

If you can help have a quick test, that will be very helpful. :)

Thanks,
Star

> 
> Cheers,
> 



  reply	other threads:[~2019-01-21 10:47 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-14 15:19 [PATCH V2 00/15] Merge EmuVariable and Real variable driver Star Zeng
2019-01-14 15:19 ` [PATCH V2 01/15] MdeModulePkg Variable: Add some missing changes for 9b18845 Star Zeng
2019-01-15  6:36   ` Wu, Hao A
2019-01-15  8:06   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 02/15] MdeModulePkg Variable: Abstract InitRealNonVolatileVariableStore Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-14 15:19 ` [PATCH V2 03/15] MdeModulePkg Variable: Not get NV PCD in VariableWriteServiceInitialize Star Zeng
2019-01-15  5:48   ` Wu, Hao A
2019-01-15  5:53     ` Zeng, Star
2019-01-15  6:37   ` Wang, Jian J
2019-01-15 10:13     ` Zeng, Star
2019-01-14 15:19 ` [PATCH V2 04/15] MdeModulePkg Variable: Abstract VariableWriteServiceInitializeDxe/Smm Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:05   ` Wang, Jian J
2019-01-14 15:19 ` [PATCH V2 05/15] MdeModulePkg: Add PcdEmuVariableNvModeEnable in dec Star Zeng
2019-01-15  5:05   ` Wang, Jian J
2019-01-15  5:55     ` Zeng, Star
2019-01-15  6:37   ` Wu, Hao A
2019-01-14 15:19 ` [PATCH V2 06/15] MdeModulePkg Variable: Remove CacheOffset in UpdateVariable() Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:04   ` Wang, Jian J
2019-01-15  9:58     ` Laszlo Ersek
2019-01-15 10:10       ` Zeng, Star
2019-01-15  8:15   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 07/15] MdeModulePkg Variable: type case VolatileBase to UINTN directly Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:06   ` Wang, Jian J
2019-01-15  8:18   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 08/15] MdeModulePkg Variable: Add emulated variable NV mode support Star Zeng
2019-01-15  6:01   ` Wang, Jian J
2019-01-15  6:16     ` Zeng, Star
2019-01-15  9:53       ` Laszlo Ersek
2019-01-15  9:33   ` Laszlo Ersek
2019-01-15  9:52     ` Zeng, Star
2019-01-14 15:19 ` [PATCH V2 09/15] MdeModulePkg VariablePei: Don't check BOOT_IN_RECOVERY_MODE Star Zeng
2019-01-14 15:19 ` [PATCH V2 10/15] ArmVirtXen: Use merged variable driver for emulated NV mode Star Zeng
2019-01-15  9:37   ` Laszlo Ersek
2019-01-16 14:26     ` Julien Grall
2019-01-17  1:26       ` Zeng, Star
2019-01-17 18:59         ` Julien Grall
2019-01-21 10:46           ` Zeng, Star [this message]
2019-01-21 13:36             ` Julien Grall
2019-01-21 19:40               ` Ard Biesheuvel
2019-01-22  4:30                 ` Zeng, Star
2019-01-23  1:41                   ` Zeng, Star
2019-01-23 12:15                     ` Julien Grall
2019-01-23 14:20                       ` Zeng, Star
2019-01-21 21:15               ` Laszlo Ersek
2019-01-21 21:22                 ` Ard Biesheuvel
2019-01-21 21:25                   ` Ard Biesheuvel
2019-01-14 15:19 ` [PATCH V2 11/15] ArmVirtXen: Link VarCheckUefiLib NULL class library instance Star Zeng
2019-01-15  9:39   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 12/15] BeagleBoardPkg: Use merged variable driver for emulated NV mode Star Zeng
2019-01-14 22:11   ` Leif Lindholm
2019-01-15  1:32     ` Zeng, Star
2019-01-15  9:48       ` Leif Lindholm
2019-01-14 15:19 ` [PATCH V2 13/15] QuarkMin: " Star Zeng
2019-01-14 15:19 ` [PATCH V2 14/15] CorebootPayloadPkg: " Star Zeng
2019-01-14 15:19 ` [PATCH V2 15/15] MdeModulePkg: Remove EmuVariableRuntimeDxe Star Zeng

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=bb9b1db9-9b9e-ef95-119a-eaca97ac9f1f@intel.com \
    --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