* [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
@ 2016-08-19 6:55 Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 1/2] ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc Vikas C Sajjan
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Vikas C Sajjan @ 2016-08-19 6:55 UTC (permalink / raw)
To: edk2-devel, lersek, ard.biesheuvel, leif.lindholm
Cc: dong.wei, Vikas C Sajjan
This series adds ramdisk driver support to ArmVirtPkg platforms.
It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
changes since v2:
- Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
a] Moved inclusion of AcpiTableDxe.inf to end of file
b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
c] fixed minor nits
changes since v1:
- Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
a] clarified in the commit message (including the subject line)
that this patch is actually about adding the RAM Disk driver to the
ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
c] prepended a patch to the series that extracts
"MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
from all of the DSC files, into "ArmVirt.dsc.inc"
Vikas C Sajjan (2):
ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
ArmVirtPkg/ArmVirtQemu.dsc | 1 -
ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
ArmVirtPkg/ArmVirtXen.dsc | 1 -
ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
7 files changed, 29 insertions(+), 3 deletions(-)
--
1.9.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3 1/2] ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
2016-08-19 6:55 [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
@ 2016-08-19 6:55 ` Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 2/2] ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
2016-08-19 13:27 ` [PATCH v3 0/2] " Laszlo Ersek
2 siblings, 0 replies; 10+ messages in thread
From: Vikas C Sajjan @ 2016-08-19 6:55 UTC (permalink / raw)
To: edk2-devel, lersek, ard.biesheuvel, leif.lindholm
Cc: dong.wei, Vikas C Sajjan
Since ArmVirt.dsc.inc is included in all the ArmVirt dsc files,
move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
---
ArmVirtPkg/ArmVirt.dsc.inc | 6 ++++++
ArmVirtPkg/ArmVirtQemu.dsc | 1 -
ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
ArmVirtPkg/ArmVirtXen.dsc | 1 -
4 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/ArmVirtPkg/ArmVirt.dsc.inc b/ArmVirtPkg/ArmVirt.dsc.inc
index ed18428..dcf5e50 100644
--- a/ArmVirtPkg/ArmVirt.dsc.inc
+++ b/ArmVirtPkg/ArmVirt.dsc.inc
@@ -405,3 +405,9 @@
gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|8000
}
+
+[Components.AARCH64]
+ #
+ # ACPI Support
+ #
+ MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc
index 9f88786..fa7dad5 100644
--- a/ArmVirtPkg/ArmVirtQemu.dsc
+++ b/ArmVirtPkg/ArmVirtQemu.dsc
@@ -396,7 +396,6 @@
#
# ACPI Support
#
- MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf {
<LibraryClasses>
NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
diff --git a/ArmVirtPkg/ArmVirtQemuKernel.dsc b/ArmVirtPkg/ArmVirtQemuKernel.dsc
index 6c536d9..fb7b1c3 100644
--- a/ArmVirtPkg/ArmVirtQemuKernel.dsc
+++ b/ArmVirtPkg/ArmVirtQemuKernel.dsc
@@ -382,7 +382,6 @@
#
# ACPI Support
#
- MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf {
<LibraryClasses>
NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
diff --git a/ArmVirtPkg/ArmVirtXen.dsc b/ArmVirtPkg/ArmVirtXen.dsc
index 4ebead5..191b615 100644
--- a/ArmVirtPkg/ArmVirtXen.dsc
+++ b/ArmVirtPkg/ArmVirtXen.dsc
@@ -232,6 +232,5 @@
# ACPI support
#
!if $(ARCH) == AARCH64
- MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.inf
!endif
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 2/2] ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
2016-08-19 6:55 [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 1/2] ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc Vikas C Sajjan
@ 2016-08-19 6:55 ` Vikas C Sajjan
2016-08-19 13:27 ` [PATCH v3 0/2] " Laszlo Ersek
2 siblings, 0 replies; 10+ messages in thread
From: Vikas C Sajjan @ 2016-08-19 6:55 UTC (permalink / raw)
To: edk2-devel, lersek, ard.biesheuvel, leif.lindholm
Cc: dong.wei, Vikas C Sajjan
Adds the RAMDisk support to ArmVirtPkg platforms.
This patch actually ports OvmfPkg commit 259d87146b07 to
ArmVirtPkg.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
---
ArmVirtPkg/ArmVirt.dsc.inc | 11 +++++++++++
ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
4 files changed, 23 insertions(+)
diff --git a/ArmVirtPkg/ArmVirt.dsc.inc b/ArmVirtPkg/ArmVirt.dsc.inc
index dcf5e50..7e29032 100644
--- a/ArmVirtPkg/ArmVirt.dsc.inc
+++ b/ArmVirtPkg/ArmVirt.dsc.inc
@@ -274,6 +274,12 @@
gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport|TRUE
+[PcdsFeatureFlag.AARCH64]
+ #
+ # Activate AcpiSdtProtocol
+ #
+ gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
+
[PcdsFixedAtBuild.common]
gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000
gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
@@ -383,6 +389,11 @@
MdeModulePkg/Universal/Network/IScsiDxe/IScsiDxe.inf
#
+ # Ramdisk support
+ #
+ MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
+
+ #
# UEFI application (Shell Embedded Boot Loader)
#
ShellPkg/Application/Shell/Shell.inf {
diff --git a/ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc b/ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc
index ad7037f..f212123 100644
--- a/ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc
+++ b/ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc
@@ -177,3 +177,8 @@ READ_LOCK_STATUS = TRUE
FILE FREEFORM = PCD(gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile) {
SECTION RAW = MdeModulePkg/Logo/Logo.bmp
}
+
+ #
+ # Ramdisk support
+ #
+ INF MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
diff --git a/ArmVirtPkg/ArmVirtRules.fdf.inc b/ArmVirtPkg/ArmVirtRules.fdf.inc
index 8952c67..5ff3004 100644
--- a/ArmVirtPkg/ArmVirtRules.fdf.inc
+++ b/ArmVirtPkg/ArmVirtRules.fdf.inc
@@ -85,6 +85,8 @@
DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
UI STRING="$(MODULE_NAME)" Optional
+ RAW ACPI Optional |.acpi
+ RAW ASL Optional |.aml
}
[Rule.Common.DXE_RUNTIME_DRIVER]
diff --git a/ArmVirtPkg/ArmVirtXen.fdf b/ArmVirtPkg/ArmVirtXen.fdf
index 0a97bd8..da1b025 100644
--- a/ArmVirtPkg/ArmVirtXen.fdf
+++ b/ArmVirtPkg/ArmVirtXen.fdf
@@ -188,6 +188,11 @@ READ_LOCK_STATUS = TRUE
INF ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.inf
!endif
+ #
+ # Ramdisk support
+ #
+ INF MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
+
[FV.FVMAIN_COMPACT]
FvAlignment = 16
ERASE_POLARITY = 1
--
1.9.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-19 6:55 [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 1/2] ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 2/2] ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
@ 2016-08-19 13:27 ` Laszlo Ersek
2016-08-20 3:01 ` Sajjan, Vikas C
2 siblings, 1 reply; 10+ messages in thread
From: Laszlo Ersek @ 2016-08-19 13:27 UTC (permalink / raw)
To: Vikas C Sajjan, edk2-devel, ard.biesheuvel, leif.lindholm; +Cc: dong.wei
On 08/19/16 08:55, Vikas C Sajjan wrote:
> This series adds ramdisk driver support to ArmVirtPkg platforms.
> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>
> changes since v2:
> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
> a] Moved inclusion of AcpiTableDxe.inf to end of file
> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
> c] fixed minor nits
>
> changes since v1:
> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
> a] clarified in the commit message (including the subject line)
> that this patch is actually about adding the RAM Disk driver to the
> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
> c] prepended a patch to the series that extracts
> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
> from all of the DSC files, into "ArmVirt.dsc.inc"
>
>
> Vikas C Sajjan (2):
> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>
> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
> ArmVirtPkg/ArmVirtXen.dsc | 1 -
> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
> 7 files changed, 29 insertions(+), 3 deletions(-)
>
Series
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Ard, can you please commit the series for Vikas? My brain is fried, I
need to get out. :)
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-19 13:27 ` [PATCH v3 0/2] " Laszlo Ersek
@ 2016-08-20 3:01 ` Sajjan, Vikas C
2016-08-22 7:07 ` Ard Biesheuvel
0 siblings, 1 reply; 10+ messages in thread
From: Sajjan, Vikas C @ 2016-08-20 3:01 UTC (permalink / raw)
To: Laszlo Ersek, edk2-devel@ml01.01.org, ard.biesheuvel@linaro.org,
leif.lindholm@linaro.org
Cc: Wei, Dong (Office of the CTO)
-----Original Message-----
From: Laszlo Ersek [mailto:lersek@redhat.com]
Sent: Friday, August 19, 2016 6:58 PM
To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>; edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org; leif.lindholm@linaro.org
Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
On 08/19/16 08:55, Vikas C Sajjan wrote:
> This series adds ramdisk driver support to ArmVirtPkg platforms.
> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>
> changes since v2:
> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
> a] Moved inclusion of AcpiTableDxe.inf to end of file
> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
> c] fixed minor nits
>
> changes since v1:
> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
> a] clarified in the commit message (including the subject line)
> that this patch is actually about adding the RAM Disk driver to the
> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
> c] prepended a patch to the series that extracts
> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
> from all of the DSC files, into "ArmVirt.dsc.inc"
>
>
> Vikas C Sajjan (2):
> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>
> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
> ArmVirtPkg/ArmVirtXen.dsc | 1 -
> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
> 7 files changed, 29 insertions(+), 3 deletions(-)
>
Series
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Thank you, Laszlo.
Ard, can you please commit the series for Vikas? My brain is fried, I need to get out. :)
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-20 3:01 ` Sajjan, Vikas C
@ 2016-08-22 7:07 ` Ard Biesheuvel
2016-08-22 7:15 ` Ard Biesheuvel
0 siblings, 1 reply; 10+ messages in thread
From: Ard Biesheuvel @ 2016-08-22 7:07 UTC (permalink / raw)
To: Sajjan, Vikas C
Cc: Laszlo Ersek, edk2-devel@ml01.01.org, leif.lindholm@linaro.org,
Wei, Dong (Office of the CTO)
On 20 August 2016 at 05:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>
>
> -----Original Message-----
> From: Laszlo Ersek [mailto:lersek@redhat.com]
> Sent: Friday, August 19, 2016 6:58 PM
> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>; edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org; leif.lindholm@linaro.org
> Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
>
> On 08/19/16 08:55, Vikas C Sajjan wrote:
>> This series adds ramdisk driver support to ArmVirtPkg platforms.
>> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>>
>> changes since v2:
>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>> a] Moved inclusion of AcpiTableDxe.inf to end of file
>> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
>> c] fixed minor nits
>>
>> changes since v1:
>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>> a] clarified in the commit message (including the subject line)
>> that this patch is actually about adding the RAM Disk driver to the
>> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
>> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
>> c] prepended a patch to the series that extracts
>> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
>> from all of the DSC files, into "ArmVirt.dsc.inc"
>>
>>
>> Vikas C Sajjan (2):
>> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
>> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>
>> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
>> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
>> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
>> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
>> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
>> ArmVirtPkg/ArmVirtXen.dsc | 1 -
>> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
>> 7 files changed, 29 insertions(+), 3 deletions(-)
>>
>
> Series
> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>
> Thank you, Laszlo.
>
> Ard, can you please commit the series for Vikas? My brain is fried, I need to get out. :)
>
> Thanks!
> Laszlo
Committed as
fde03c8065ea ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
d36447418d32 ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
Thanks,
Ard.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-22 7:07 ` Ard Biesheuvel
@ 2016-08-22 7:15 ` Ard Biesheuvel
2016-08-22 8:01 ` Sajjan, Vikas C
0 siblings, 1 reply; 10+ messages in thread
From: Ard Biesheuvel @ 2016-08-22 7:15 UTC (permalink / raw)
To: Sajjan, Vikas C
Cc: Laszlo Ersek, edk2-devel@ml01.01.org, leif.lindholm@linaro.org,
Wei, Dong (Office of the CTO)
On 22 August 2016 at 09:07, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
> On 20 August 2016 at 05:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>>
>>
>> -----Original Message-----
>> From: Laszlo Ersek [mailto:lersek@redhat.com]
>> Sent: Friday, August 19, 2016 6:58 PM
>> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>; edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org; leif.lindholm@linaro.org
>> Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
>> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
>>
>> On 08/19/16 08:55, Vikas C Sajjan wrote:
>>> This series adds ramdisk driver support to ArmVirtPkg platforms.
>>> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>>>
>>> changes since v2:
>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>> a] Moved inclusion of AcpiTableDxe.inf to end of file
>>> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
>>> c] fixed minor nits
>>>
>>> changes since v1:
>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>> a] clarified in the commit message (including the subject line)
>>> that this patch is actually about adding the RAM Disk driver to the
>>> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
>>> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
>>> c] prepended a patch to the series that extracts
>>> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
>>> from all of the DSC files, into "ArmVirt.dsc.inc"
>>>
>>>
>>> Vikas C Sajjan (2):
>>> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
>>> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>>
>>> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
>>> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
>>> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
>>> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
>>> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
>>> ArmVirtPkg/ArmVirtXen.dsc | 1 -
>>> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
>>> 7 files changed, 29 insertions(+), 3 deletions(-)
>>>
>>
>> Series
>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>>
>> Thank you, Laszlo.
>>
>> Ard, can you please commit the series for Vikas? My brain is fried, I need to get out. :)
>>
>> Thanks!
>> Laszlo
>
> Committed as
>
> fde03c8065ea ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
> d36447418d32 ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>
These patches have no broken ArmVirtXen, since it has no resolution
for FileExplorerLib, which RamDiskDxe depends on.
Could you propose a fix please?
--
Ard.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-22 7:15 ` Ard Biesheuvel
@ 2016-08-22 8:01 ` Sajjan, Vikas C
2016-08-22 8:48 ` Ard Biesheuvel
0 siblings, 1 reply; 10+ messages in thread
From: Sajjan, Vikas C @ 2016-08-22 8:01 UTC (permalink / raw)
To: Ard Biesheuvel
Cc: Laszlo Ersek, edk2-devel@ml01.01.org, leif.lindholm@linaro.org,
Wei, Dong (Office of the CTO)
Hi Ard,
-----Original Message-----
From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
Sent: Monday, August 22, 2016 12:46 PM
To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>
Cc: Laszlo Ersek <lersek@redhat.com>; edk2-devel@ml01.01.org; leif.lindholm@linaro.org; Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
On 22 August 2016 at 09:07, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
> On 20 August 2016 at 05:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>>
>>
>> -----Original Message-----
>> From: Laszlo Ersek [mailto:lersek@redhat.com]
>> Sent: Friday, August 19, 2016 6:58 PM
>> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>;
>> edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org;
>> leif.lindholm@linaro.org
>> Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
>> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg
>> platforms
>>
>> On 08/19/16 08:55, Vikas C Sajjan wrote:
>>> This series adds ramdisk driver support to ArmVirtPkg platforms.
>>> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>>>
>>> changes since v2:
>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>> a] Moved inclusion of AcpiTableDxe.inf to end of file
>>> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
>>> c] fixed minor nits
>>>
>>> changes since v1:
>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>> a] clarified in the commit message (including the subject line)
>>> that this patch is actually about adding the RAM Disk driver to the
>>> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
>>> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
>>> c] prepended a patch to the series that extracts
>>> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
>>> from all of the DSC files, into "ArmVirt.dsc.inc"
>>>
>>>
>>> Vikas C Sajjan (2):
>>> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
>>> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>>
>>> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
>>> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
>>> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
>>> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
>>> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
>>> ArmVirtPkg/ArmVirtXen.dsc | 1 -
>>> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
>>> 7 files changed, 29 insertions(+), 3 deletions(-)
>>>
>>
>> Series
>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>>
>> Thank you, Laszlo.
>>
>> Ard, can you please commit the series for Vikas? My brain is fried, I
>> need to get out. :)
>>
>> Thanks!
>> Laszlo
>
> Committed as
>
> fde03c8065ea ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to
> ArmVirt.dsc.inc
> d36447418d32 ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>
These patches have no broken ArmVirtXen, since it has no resolution for FileExplorerLib, which RamDiskDxe depends on.
Could you propose a fix please?
My bad,
I somehow missed the below line in ArmVirtPkg/ArmVirt.dsc.inc
FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
Will send out v4 now.
Thanks and Regards
Vikas Sajjan
--
Ard.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-22 8:01 ` Sajjan, Vikas C
@ 2016-08-22 8:48 ` Ard Biesheuvel
2016-08-22 10:15 ` Sajjan, Vikas C
0 siblings, 1 reply; 10+ messages in thread
From: Ard Biesheuvel @ 2016-08-22 8:48 UTC (permalink / raw)
To: Sajjan, Vikas C
Cc: Laszlo Ersek, edk2-devel@ml01.01.org, leif.lindholm@linaro.org,
Wei, Dong (Office of the CTO)
On 22 August 2016 at 10:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>
> Hi Ard,
>
> -----Original Message-----
> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
> Sent: Monday, August 22, 2016 12:46 PM
> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>
> Cc: Laszlo Ersek <lersek@redhat.com>; edk2-devel@ml01.01.org; leif.lindholm@linaro.org; Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
>
> On 22 August 2016 at 09:07, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
>> On 20 August 2016 at 05:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>>>
>>>
>>> -----Original Message-----
>>> From: Laszlo Ersek [mailto:lersek@redhat.com]
>>> Sent: Friday, August 19, 2016 6:58 PM
>>> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>;
>>> edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org;
>>> leif.lindholm@linaro.org
>>> Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
>>> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg
>>> platforms
>>>
>>> On 08/19/16 08:55, Vikas C Sajjan wrote:
>>>> This series adds ramdisk driver support to ArmVirtPkg platforms.
>>>> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>>>>
>>>> changes since v2:
>>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>>> a] Moved inclusion of AcpiTableDxe.inf to end of file
>>>> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
>>>> c] fixed minor nits
>>>>
>>>> changes since v1:
>>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>>> a] clarified in the commit message (including the subject line)
>>>> that this patch is actually about adding the RAM Disk driver to the
>>>> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
>>>> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
>>>> c] prepended a patch to the series that extracts
>>>> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
>>>> from all of the DSC files, into "ArmVirt.dsc.inc"
>>>>
>>>>
>>>> Vikas C Sajjan (2):
>>>> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
>>>> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>>>
>>>> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
>>>> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
>>>> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
>>>> ArmVirtPkg/ArmVirtXen.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
>>>> 7 files changed, 29 insertions(+), 3 deletions(-)
>>>>
>>>
>>> Series
>>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>>>
>>> Thank you, Laszlo.
>>>
>>> Ard, can you please commit the series for Vikas? My brain is fried, I
>>> need to get out. :)
>>>
>>> Thanks!
>>> Laszlo
>>
>> Committed as
>>
>> fde03c8065ea ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to
>> ArmVirt.dsc.inc
>> d36447418d32 ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>
>
> These patches have no broken ArmVirtXen, since it has no resolution for FileExplorerLib, which RamDiskDxe depends on.
>
> Could you propose a fix please?
>
> My bad,
> I somehow missed the below line in ArmVirtPkg/ArmVirt.dsc.inc
> FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
>
> Will send out v4 now.
>
Hello Vikas,
I already committed your v3 patches. So instead of a v4, could you
please propose a new patch that fixes ArmVirtXen.dsc?
Thanks,
Ard.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
2016-08-22 8:48 ` Ard Biesheuvel
@ 2016-08-22 10:15 ` Sajjan, Vikas C
0 siblings, 0 replies; 10+ messages in thread
From: Sajjan, Vikas C @ 2016-08-22 10:15 UTC (permalink / raw)
To: Ard Biesheuvel
Cc: Laszlo Ersek, edk2-devel@ml01.01.org, leif.lindholm@linaro.org
Hi Ard,
-----Original Message-----
From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
Sent: Monday, August 22, 2016 2:19 PM
To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>
Cc: Laszlo Ersek <lersek@redhat.com>; edk2-devel@ml01.01.org; leif.lindholm@linaro.org; Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms
On 22 August 2016 at 10:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>
> Hi Ard,
>
> -----Original Message-----
> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
> Sent: Monday, August 22, 2016 12:46 PM
> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>
> Cc: Laszlo Ersek <lersek@redhat.com>; edk2-devel@ml01.01.org;
> leif.lindholm@linaro.org; Wei, Dong (Office of the CTO)
> <dong.wei@hpe.com>
> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg
> platforms
>
> On 22 August 2016 at 09:07, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
>> On 20 August 2016 at 05:01, Sajjan, Vikas C <vikas.cha.sajjan@hpe.com> wrote:
>>>
>>>
>>> -----Original Message-----
>>> From: Laszlo Ersek [mailto:lersek@redhat.com]
>>> Sent: Friday, August 19, 2016 6:58 PM
>>> To: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>;
>>> edk2-devel@ml01.01.org; ard.biesheuvel@linaro.org;
>>> leif.lindholm@linaro.org
>>> Cc: Wei, Dong (Office of the CTO) <dong.wei@hpe.com>
>>> Subject: Re: [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg
>>> platforms
>>>
>>> On 08/19/16 08:55, Vikas C Sajjan wrote:
>>>> This series adds ramdisk driver support to ArmVirtPkg platforms.
>>>> It actually ports OvmfPkg commit 259d87146b07 to ArmVirtPkg.
>>>>
>>>> changes since v2:
>>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>>> a] Moved inclusion of AcpiTableDxe.inf to end of file
>>>> b] Moved gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol to proper location
>>>> c] fixed minor nits
>>>>
>>>> changes since v1:
>>>> - Made changes as suggested by Laszlo Ersek <lersek@redhat.com>
>>>> a] clarified in the commit message (including the subject line)
>>>> that this patch is actually about adding the RAM Disk driver to the
>>>> ArmVirtPkg platforms, not just the NFIT reporting feature of the driver
>>>> b] enabled feature for all of ArmVirtQemu, ArmVirtQemuKernel, and ArmVirtXen.
>>>> c] prepended a patch to the series that extracts
>>>> "MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf"
>>>> from all of the DSC files, into "ArmVirt.dsc.inc"
>>>>
>>>>
>>>> Vikas C Sajjan (2):
>>>> ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc
>>>> ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>>>
>>>> ArmVirtPkg/ArmVirt.dsc.inc | 17 +++++++++++++++++
>>>> ArmVirtPkg/ArmVirtQemu.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 +++++
>>>> ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtRules.fdf.inc | 2 ++
>>>> ArmVirtPkg/ArmVirtXen.dsc | 1 -
>>>> ArmVirtPkg/ArmVirtXen.fdf | 5 +++++
>>>> 7 files changed, 29 insertions(+), 3 deletions(-)
>>>>
>>>
>>> Series
>>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>>>
>>> Thank you, Laszlo.
>>>
>>> Ard, can you please commit the series for Vikas? My brain is fried,
>>> I need to get out. :)
>>>
>>> Thanks!
>>> Laszlo
>>
>> Committed as
>>
>> fde03c8065ea ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to
>> ArmVirt.dsc.inc
>> d36447418d32 ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms
>>
>
> These patches have no broken ArmVirtXen, since it has no resolution for FileExplorerLib, which RamDiskDxe depends on.
>
> Could you propose a fix please?
>
> My bad,
> I somehow missed the below line in ArmVirtPkg/ArmVirt.dsc.inc
> FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.i
> FileExplorerLib|nf
>
> Will send out v4 now.
>
Hello Vikas,
I already committed your v3 patches. So instead of a v4, could you please propose a new patch that fixes ArmVirtXen.dsc?
See if this helps - https://www.mail-archive.com/edk2-devel@lists.01.org/msg16049.html
Thanks and Regards
Vikas Sajjan
Thanks,
Ard.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2016-08-22 10:15 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-19 6:55 [PATCH v3 0/2] Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 1/2] ArmVirtPkg: Move inclusion of AcpiTableDxe.inf to ArmVirt.dsc.inc Vikas C Sajjan
2016-08-19 6:55 ` [PATCH v3 2/2] ArmVirtPkg: Add Ramdisk support to ArmVirtPkg platforms Vikas C Sajjan
2016-08-19 13:27 ` [PATCH v3 0/2] " Laszlo Ersek
2016-08-20 3:01 ` Sajjan, Vikas C
2016-08-22 7:07 ` Ard Biesheuvel
2016-08-22 7:15 ` Ard Biesheuvel
2016-08-22 8:01 ` Sajjan, Vikas C
2016-08-22 8:48 ` Ard Biesheuvel
2016-08-22 10:15 ` Sajjan, Vikas C
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox