public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Marcin Wojtas <mw@semihalf.com>
To: Leif Lindholm <leif.lindholm@linaro.org>
Cc: edk2-devel-01 <edk2-devel@lists.01.org>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	 nadavh@marvell.com, Neta Zur Hershkovits <neta@marvell.com>,
	 Kostya Porotchkin <kostap@marvell.com>,
	Hua Jing <jinghua@marvell.com>,
	 semihalf-dabros-jan <jsd@semihalf.com>
Subject: Re: [platforms: PATCH v3 0/4] Armada 7k/8k variable support
Date: Thu, 30 Nov 2017 17:23:17 +0100	[thread overview]
Message-ID: <CAPv3WKf4rmsVBSmKjx-L7BOnMvBPffuYBpRu3dYMf3wa3BH1-w@mail.gmail.com> (raw)
In-Reply-To: <20171130155114.pjzemqpsbtem6oz5@bivouac.eciton.net>

2017-11-30 16:51 GMT+01:00 Leif Lindholm <leif.lindholm@linaro.org>:
> On Tue, Nov 28, 2017 at 09:19:09AM +0100, Marcin Wojtas wrote:
>> Hi,
>>
>> I submit v3 of the Armada variable support with the MvFvbDxe
>> driver improved according to the recent review. The biggest
>> changes are a proper implementation of Set/GetAttributes
>> protocol callbacks. Details can be found in the changelog below.
>>
>> Patches are available in the github:
>> https://github.com/MarvellEmbeddedProcessors/edk2-open-platform/commits/var-upstream-r20171128
>>
>> I'm looking forward to the comments or remarks.
>>
>> Best regards,
>> Marcin
>
> This looks a lot better, thanks.
>
> For the series: Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> Pushed as 4fe276ea64..93f1d9689a.
>

Thanks a lot!

Best regards,
Marcin

>> Changelog:
>> v2 -> v3
>> * 2/4 - 4/4
>>     - Add RBs
>>
>> * 1/4
>>     - Fix line-breaking in MvFvbValidateFvHeader
>>     - Check actual WriteDisabled attributes MvFvbEraseBlocks
>>     - Rework MvFvbGetAttributes/MvFvbSetAttributes to properly
>>       support those features
>>
>> v1 -> v2:
>> * Change patches order in order to safely apply related Depex modifications
>>
>> * 1/4:
>>   - Fix style (line breaking, openining brackets, alignment, typos)
>>   - Rework MvFvbSetAttributes - because it can return only EFI_SUCCESS /
>>     EFI_INVALID_PARAMETER and should return FVB attributes,
>>     add debug information, that operation is not supported and return
>>     default values via MvFvbGetAttributes.
>>   - Return EFI_SUCCESS, in case NumBytes == 0 in MvFvbRead.
>>
>> * 2/4:
>>   - Move Depex configuration from 4/4
>>
>> * 3/4:
>>   - Move Depex configuration from 4/4
>>   - Reword and break commit message.
>>
>> * 4/4:
>>   - Remove Depex configuration
>>
>>
>> Marcin Wojtas (4):
>>   Platform/Marvell: Introduce MvFvbDxe variable support driver
>>   Marvell/Drivers: MvSpiFlash: Enable using driver in RT
>>   Marvell/Drivers: MvSpiDxe: Enable using driver in RT
>>   Marvell/Armada: Enable variables support
>>
>>  Platform/Marvell/Armada/Armada.dsc.inc              |   25 +-
>>  Platform/Marvell/Armada/Armada70x0.fdf              |    6 +-
>>  Platform/Marvell/Drivers/Spi/Devices/MvSpiFlash.c   |   58 +-
>>  Platform/Marvell/Drivers/Spi/Devices/MvSpiFlash.h   |    1 +
>>  Platform/Marvell/Drivers/Spi/Devices/MvSpiFlash.inf |   11 +-
>>  Platform/Marvell/Drivers/Spi/MvSpiDxe.c             |   50 +-
>>  Platform/Marvell/Drivers/Spi/MvSpiDxe.h             |    2 +
>>  Platform/Marvell/Drivers/Spi/MvSpiDxe.inf           |    9 +-
>>  Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.c   | 1138 ++++++++++++++++++++
>>  Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.h   |  128 +++
>>  Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.inf |   91 ++
>>  Platform/Marvell/Include/Protocol/Spi.h             |    7 +
>>  Platform/Marvell/Marvell.dec                        |    4 +
>>  13 files changed, 1516 insertions(+), 14 deletions(-)
>>  create mode 100644 Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.c
>>  create mode 100644 Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.h
>>  create mode 100644 Platform/Marvell/Drivers/Spi/Variables/MvFvbDxe.inf
>>
>> --
>> 2.7.4
>>


      reply	other threads:[~2017-11-30 16:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-28  8:19 [platforms: PATCH v3 0/4] Armada 7k/8k variable support Marcin Wojtas
2017-11-28  8:19 ` [platforms: PATCH v3 1/4] Platform/Marvell: Introduce MvFvbDxe variable support driver Marcin Wojtas
2017-11-29 21:35   ` Marcin Wojtas
2017-11-29 22:38     ` Leif Lindholm
2017-11-28  8:19 ` [platforms: PATCH v3 2/4] Marvell/Drivers: MvSpiFlash: Enable using driver in RT Marcin Wojtas
2017-11-28  8:19 ` [platforms: PATCH v3 3/4] Marvell/Drivers: MvSpiDxe: " Marcin Wojtas
2017-11-28  8:19 ` [platforms: PATCH v3 4/4] Marvell/Armada: Enable variables support Marcin Wojtas
2017-11-30 15:51 ` [platforms: PATCH v3 0/4] Armada 7k/8k variable support Leif Lindholm
2017-11-30 16:23   ` Marcin Wojtas [this message]

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=CAPv3WKf4rmsVBSmKjx-L7BOnMvBPffuYBpRu3dYMf3wa3BH1-w@mail.gmail.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