Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-08 Thread Tom Rini
On Wed, Feb 08, 2023 at 11:28:21AM -0700, Simon Glass wrote: > Hi Tom, > > On Tue, 7 Feb 2023 at 17:10, Tom Rini wrote: > > > > On Tue, Feb 07, 2023 at 03:25:16PM -0700, Simon Glass wrote: > > > Hi Loic, > > > > > > On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote: > > > > > > > > Hi Simon, > > >

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-08 Thread Simon Glass
Hi Tom, On Tue, 7 Feb 2023 at 17:10, Tom Rini wrote: > > On Tue, Feb 07, 2023 at 03:25:16PM -0700, Simon Glass wrote: > > Hi Loic, > > > > On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote: > > > > > > Hi Simon, > > > > > > On Tue, 7 Feb 2023 at 05:05, Simon Glass wrote: > > > > > > > > Hi Loic,

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-07 Thread Tom Rini
On Tue, Feb 07, 2023 at 03:25:16PM -0700, Simon Glass wrote: > Hi Loic, > > On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote: > > > > Hi Simon, > > > > On Tue, 7 Feb 2023 at 05:05, Simon Glass wrote: > > > > > > Hi Loic, > > > > > > On Mon, 6 Feb 2023 at 15:12, Loic Poulain wrote: > > > > > > >

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-07 Thread Simon Glass
Hi Loic, On Tue, 7 Feb 2023 at 14:47, Loic Poulain wrote: > > Hi Simon, > > On Tue, 7 Feb 2023 at 05:05, Simon Glass wrote: > > > > Hi Loic, > > > > On Mon, 6 Feb 2023 at 15:12, Loic Poulain wrote: > > > > > > Hi Simon, > > > > > > Le lun. 6 févr. 2023 à 18:12, Simon Glass a écrit : > > >> > >

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-07 Thread Loic Poulain
Hi Simon, On Tue, 7 Feb 2023 at 05:05, Simon Glass wrote: > > Hi Loic, > > On Mon, 6 Feb 2023 at 15:12, Loic Poulain wrote: > > > > Hi Simon, > > > > Le lun. 6 févr. 2023 à 18:12, Simon Glass a écrit : > >> > >> Hi Loic, > >> > >> On Wed, 1 Jun 2022 at 12:27, Loic Poulain wrote: > >> > > >> >

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-06 Thread Simon Glass
Hi Loic, On Mon, 6 Feb 2023 at 15:12, Loic Poulain wrote: > > Hi Simon, > > Le lun. 6 févr. 2023 à 18:12, Simon Glass a écrit : >> >> Hi Loic, >> >> On Wed, 1 Jun 2022 at 12:27, Loic Poulain wrote: >> > >> > Mark sha256_process as weak to allow hardware specific implementation. >> > Add paramet

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-06 Thread Loic Poulain
Hi Simon, Le lun. 6 févr. 2023 à 18:12, Simon Glass a écrit : > Hi Loic, > > On Wed, 1 Jun 2022 at 12:27, Loic Poulain wrote: > > > > Mark sha256_process as weak to allow hardware specific implementation. > > Add parameter for supporting multiple blocks processing. > > > > Signed-off-by: Loic P

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2023-02-06 Thread Simon Glass
Hi Loic, On Wed, 1 Jun 2022 at 12:27, Loic Poulain wrote: > > Mark sha256_process as weak to allow hardware specific implementation. > Add parameter for supporting multiple blocks processing. > > Signed-off-by: Loic Poulain > --- > lib/sha256.c | 26 +++--- > 1 file changed,

Re: [PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2022-06-27 Thread Tom Rini
On Wed, Jun 01, 2022 at 08:26:30PM +0200, Loic Poulain wrote: > Mark sha256_process as weak to allow hardware specific implementation. > Add parameter for supporting multiple blocks processing. > > Signed-off-by: Loic Poulain Applied to u-boot/next, thanks! -- Tom signature.asc Description:

[PATCH v2 4/5] lib: sha256: Add support for hardware specific sha256_process

2022-06-01 Thread Loic Poulain
Mark sha256_process as weak to allow hardware specific implementation. Add parameter for supporting multiple blocks processing. Signed-off-by: Loic Poulain --- lib/sha256.c | 26 +++--- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/lib/sha256.c b/lib/sha256.c