Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Jonas Karlman
Hi Quentin, On 2025-04-09 18:11, Quentin Schulz wrote: > Hi Jonas, > > On 4/9/25 5:38 PM, Jonas Karlman wrote: >> Hi Quentin, >> >> On 2025-04-09 13:06, Quentin Schulz wrote: >>> Hi Jonas, >>> >>> On 3/29/25 4:06 PM, Jonas Karlman wrote: Use of SHA256 checksum validation on ARMv7 SoCs can be

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Quentin Schulz
Hi Simon, On 4/9/25 6:35 PM, Simon Glass wrote: Hi Quentin, On Wed, 9 Apr 2025 at 10:11, Quentin Schulz wrote: Hi Jonas, On 4/9/25 5:38 PM, Jonas Karlman wrote: Hi Quentin, On 2025-04-09 13:06, Quentin Schulz wrote: Hi Jonas, On 3/29/25 4:06 PM, Jonas Karlman wrote: Use of SHA256 check

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Simon Glass
Hi Quentin, On Wed, 9 Apr 2025 at 10:11, Quentin Schulz wrote: > > Hi Jonas, > > On 4/9/25 5:38 PM, Jonas Karlman wrote: > > Hi Quentin, > > > > On 2025-04-09 13:06, Quentin Schulz wrote: > >> Hi Jonas, > >> > >> On 3/29/25 4:06 PM, Jonas Karlman wrote: > >>> Use of SHA256 checksum validation on

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Quentin Schulz
Hi Jonas, On 4/9/25 5:38 PM, Jonas Karlman wrote: Hi Quentin, On 2025-04-09 13:06, Quentin Schulz wrote: Hi Jonas, On 3/29/25 4:06 PM, Jonas Karlman wrote: Use of SHA256 checksum validation on ARMv7 SoCs can be very time consuming compared to ARMv8 SoCs with Crypto Extensions. Add support f

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Jonas Karlman
Hi Quentin, On 2025-04-09 13:06, Quentin Schulz wrote: > Hi Jonas, > > On 3/29/25 4:06 PM, Jonas Karlman wrote: >> Use of SHA256 checksum validation on ARMv7 SoCs can be very time >> consuming compared to ARMv8 SoCs with Crypto Extensions. >> >> Add support for use of the crc32 hash algo when SHA

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-09 Thread Quentin Schulz
Hi Jonas, On 3/29/25 4:06 PM, Jonas Karlman wrote: Use of SHA256 checksum validation on ARMv7 SoCs can be very time consuming compared to ARMv8 SoCs with Crypto Extensions. Add support for use of the crc32 hash algo when SHA256 is not supported. Also use a HAS_HASH to simplify the ifdefs when n

Re: [PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-04-06 Thread Kever Yang
On 2025/3/29 23:06, Jonas Karlman wrote: Use of SHA256 checksum validation on ARMv7 SoCs can be very time consuming compared to ARMv8 SoCs with Crypto Extensions. Add support for use of the crc32 hash algo when SHA256 is not supported. Also use a HAS_HASH to simplify the ifdefs when no known h

[PATCH v4 09/10] rockchip: binman: Support use of crc32 for SPL_FIT_SIGNATURE

2025-03-29 Thread Jonas Karlman
Use of SHA256 checksum validation on ARMv7 SoCs can be very time consuming compared to ARMv8 SoCs with Crypto Extensions. Add support for use of the crc32 hash algo when SHA256 is not supported. Also use a HAS_HASH to simplify the ifdefs when no known hash algo is compiled. Signed-off-by: Jonas K