[edk2] [platforms: PATCH v2 00/12] Armada 7k/8k - misc improvements

Marcin Wojtas posted 12 patches 6 years, 6 months ago
Failed in applying to current master (apply log)
Platform/Marvell/Armada/Armada.dsc.inc                                    |  55 +-
Platform/Marvell/Armada/Armada70x0.fdf                                    |  23 +-
Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c                 |  45 ++
Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf               |  45 ++
Platform/Marvell/Armada/Library/Armada70x0Lib/AArch64/ArmPlatformHelper.S |   1 +
Platform/Marvell/Armada/Library/Armada70x0Lib/Armada70x0Lib.c             |  11 -
Platform/Marvell/Marvell.dec                                              |   5 +
Silicon/Marvell/Documentation/PortingGuide.txt                            | 800 ++++++++++----------
8 files changed, 550 insertions(+), 435 deletions(-)
create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c
create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf
[edk2] [platforms: PATCH v2 00/12] Armada 7k/8k - misc improvements
Posted by Marcin Wojtas 6 years, 6 months ago
Hi,

This is a second version of misc, general improvements patchset.
There are minor changes, comparing to v1 - please refer to the
changelog below.

The patches are available in the github:
https://github.com/MarvellEmbeddedProcessors/edk2-open-platform/commits/misc-upstream-r20171011

I'm looking forward to your comments or remarks.

Best regards,
Marcin

Changelog:
v1 -> v2
* Remove patch: "Marvell/Armada: Armada70x0Lib: Clean FV in the D-cache
  before boot"

* 1/12
  - Specify contribution in new way in the commit log
  - Add Linaro copyrights to new files

* 8/13
  - Improve commit log

* 11/13
  - Fix indentation

* Others
  - Add RB's

Ard Biesheuvel (10):
  Marvell/Armada: Switch to dynamic PCDs
  Marvell/Armada: Armada70x0Lib: Terminate call stack list at entry
  Marvell/Armada: Use 4k/64k aligned sections for DXE/DXE-rt modules
  Marvell/Armada: Switch to generic BDS
  Marvell/Armada: Re-enable driver model diagnostics PCDs
  Marvell/Armada: Ensure GICC frames adjacency
  Marvell/Armada: Disable PerformanceLibrary
  Marvell/Armada: Switch to unicore PrePi
  Marvell/Armada: Remove outdated SEC alignment override
  Marvell/Armada: Add the UefiPxeBcDxe driver

Marcin Wojtas (2):
  Marvell/Armada: Introduce platform initialization driver
  Marvell/Documentation: Follow EDK2 coding style in the PortingGuide

 Platform/Marvell/Armada/Armada.dsc.inc                                    |  55 +-
 Platform/Marvell/Armada/Armada70x0.fdf                                    |  23 +-
 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c                 |  45 ++
 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf               |  45 ++
 Platform/Marvell/Armada/Library/Armada70x0Lib/AArch64/ArmPlatformHelper.S |   1 +
 Platform/Marvell/Armada/Library/Armada70x0Lib/Armada70x0Lib.c             |  11 -
 Platform/Marvell/Marvell.dec                                              |   5 +
 Silicon/Marvell/Documentation/PortingGuide.txt                            | 800 ++++++++++----------
 8 files changed, 550 insertions(+), 435 deletions(-)
 create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c
 create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf

-- 
2.7.4

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [platforms: PATCH v2 00/12] Armada 7k/8k - misc improvements
Posted by Leif Lindholm 6 years, 6 months ago
On Wed, Oct 11, 2017 at 12:15:27PM +0200, Marcin Wojtas wrote:
> Hi,
> 
> This is a second version of misc, general improvements patchset.
> There are minor changes, comparing to v1 - please refer to the
> changelog below.
> 
> The patches are available in the github:
> https://github.com/MarvellEmbeddedProcessors/edk2-open-platform/commits/misc-upstream-r20171011
> 
> I'm looking forward to your comments or remarks.
> 
> Best regards,
> Marcin
> 
> Changelog:
> v1 -> v2
> * Remove patch: "Marvell/Armada: Armada70x0Lib: Clean FV in the D-cache
>   before boot"
> 
> * 1/12
>   - Specify contribution in new way in the commit log
>   - Add Linaro copyrights to new files
> 
> * 8/13
>   - Improve commit log
> 
> * 11/13
>   - Fix indentation
> 
> * Others
>   - Add RB's

Thanks - for the series:
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

Pushed as 5d6506e4e9..24404d5300.

> Ard Biesheuvel (10):
>   Marvell/Armada: Switch to dynamic PCDs
>   Marvell/Armada: Armada70x0Lib: Terminate call stack list at entry
>   Marvell/Armada: Use 4k/64k aligned sections for DXE/DXE-rt modules
>   Marvell/Armada: Switch to generic BDS
>   Marvell/Armada: Re-enable driver model diagnostics PCDs
>   Marvell/Armada: Ensure GICC frames adjacency
>   Marvell/Armada: Disable PerformanceLibrary
>   Marvell/Armada: Switch to unicore PrePi
>   Marvell/Armada: Remove outdated SEC alignment override
>   Marvell/Armada: Add the UefiPxeBcDxe driver
> 
> Marcin Wojtas (2):
>   Marvell/Armada: Introduce platform initialization driver
>   Marvell/Documentation: Follow EDK2 coding style in the PortingGuide
> 
>  Platform/Marvell/Armada/Armada.dsc.inc                                    |  55 +-
>  Platform/Marvell/Armada/Armada70x0.fdf                                    |  23 +-
>  Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c                 |  45 ++
>  Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf               |  45 ++
>  Platform/Marvell/Armada/Library/Armada70x0Lib/AArch64/ArmPlatformHelper.S |   1 +
>  Platform/Marvell/Armada/Library/Armada70x0Lib/Armada70x0Lib.c             |  11 -
>  Platform/Marvell/Marvell.dec                                              |   5 +
>  Silicon/Marvell/Documentation/PortingGuide.txt                            | 800 ++++++++++----------
>  8 files changed, 550 insertions(+), 435 deletions(-)
>  create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.c
>  create mode 100644 Platform/Marvell/Armada/Drivers/PlatInitDxe/PlatInitDxe.inf
> 
> -- 
> 2.7.4
> 
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Re: [edk2] [platforms: PATCH v2 00/12] Armada 7k/8k - misc improvements
Posted by Marcin Wojtas 6 years, 6 months ago
2017-10-11 13:38 GMT+02:00 Leif Lindholm <leif.lindholm@linaro.org>:
> On Wed, Oct 11, 2017 at 12:15:27PM +0200, Marcin Wojtas wrote:
>> Hi,
>>
>> This is a second version of misc, general improvements patchset.
>> There are minor changes, comparing to v1 - please refer to the
>> changelog below.
>>
>> The patches are available in the github:
>> https://github.com/MarvellEmbeddedProcessors/edk2-open-platform/commits/misc-upstream-r20171011
>>
>> I'm looking forward to your comments or remarks.
>>
>> Best regards,
>> Marcin
>>
>> Changelog:
>> v1 -> v2
>> * Remove patch: "Marvell/Armada: Armada70x0Lib: Clean FV in the D-cache
>>   before boot"
>>
>> * 1/12
>>   - Specify contribution in new way in the commit log
>>   - Add Linaro copyrights to new files
>>
>> * 8/13
>>   - Improve commit log
>>
>> * 11/13
>>   - Fix indentation
>>
>> * Others
>>   - Add RB's
>
> Thanks - for the series:
> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
>
> Pushed as 5d6506e4e9..24404d5300.
>

Thanks!
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel