Using a NRF52840 running zephyr and mcuboot, the function nrf_cc310_bl_ecdsa_verify_secp256r1() is getting stuck in a loop.
I am using NRFXLIB v1.1.0
Looking at the disassembly window in my IDE
PkaEcdsaVerify is getting tuck in a loop and never returning.
The loop assembly consists of the following
F8D83000 ldr.w r3, [r8, #0]
931C str r3, [sp, #0x70]
9B1C ldr r3, [sp, #0x70]
07DB lsls r3, r3, #31
D5F9 bpl 0x000104E4
When i first get to these s lines of assembly,
r3 is 0x5002b080
r8 is 0x5002b0b4 (the value at #0 here is zero, so r3 becomes zero after the first line and never changes again.)
Any thoughts?