Power consumption increasing when adding mcuboot

Hi,

I'm working on the nrf5340DK and testing power comsumption. I have obtained less than 4uA with the peripheral lbs exemple. To achive this I disabled loging and serial in the application and the network application and enabled PM. I also disabled uart directly in the dk dts file.

My final application will need firmware update so I tryed adding mcuboot to the exemple. I have configured the bootloader through a conf file in the child image directory as follow :

CONFIG_LOG=n
CONFIG_SERIAL=n
CONFIG_MCUBOOT_SERIAL=n

Then I obtain 200uA consumption where I previously have 4uA.

I suppose there is a peripheral that is enabled by the bootloader but I have disabled unused peripherals in dts. I'm not familiar with zephyr os and the multi-image build process, I'm probably missing something.

I obtain the same cunsomption with the smp_srv and power profiling exemple when adding mcuboot.

I'm using NCS 2.2.0

Related