Re: [PATCH v3 1/4] ARM: stm32: Fix ECDSA authentication with Dcache enabled

2023-01-04 Thread Patrice CHOTARD
Hi Marek On 12/7/22 20:24, Marek Vasut wrote: > In case Dcache is enabled while the ECDSA authentication function is > called via BootROM ROM API, the MMU tables are set up and the BootROM > region is not marked as executable, so an attempt to run code from it > results in a hang. Mark the BootROM

Re: [PATCH v3 1/4] ARM: stm32: Fix ECDSA authentication with Dcache enabled

2022-12-12 Thread Patrick DELAUNAY
Hi, On 12/7/22 20:24, Marek Vasut wrote: In case Dcache is enabled while the ECDSA authentication function is called via BootROM ROM API, the MMU tables are set up and the BootROM region is not marked as executable, so an attempt to run code from it results in a hang. Mark the BootROM region as

[PATCH v3 1/4] ARM: stm32: Fix ECDSA authentication with Dcache enabled

2022-12-07 Thread Marek Vasut
In case Dcache is enabled while the ECDSA authentication function is called via BootROM ROM API, the MMU tables are set up and the BootROM region is not marked as executable, so an attempt to run code from it results in a hang. Mark the BootROM region as executable as suggested by Patrick to preven