QSPI Not waking from deep sleep on startup

In SDK 1.9.0 i saw that QSPI deep power down was implemented and i can confirm that that works using the below code.  The issue I see is that if the device is in deep power down mode and then the device is rebooted and power is maintained in my case through the debugger the device does not reinitialize so this kind of defeats the use of power management.   I also see that the call to get device binding returns a 0 so I can not make a call to run a resume action.

Previous to this I was using the device as SPI NOR and it restarted just fine.  I see that when powered down my board is running at the same power level with both drivers idle.  Is this the wrong code or am I missing something?  I see that dpd is only implemented in the nrf_qspi_nor.c qspi_nor_pm_action function.

Thanks

Ed

#if (CONFIG_NORDIC_QSPI_NOR - 0) || DT_NODE_HAS_STATUS(DT_INST(0, nordic_qspi_nor), okay)
g_qspi_dev = device_get_binding(DT_LABEL(DT_INST(0, nordic_qspi_nor)));
#endif

pm_device_action_run(g_qspi_dev,PM_DEVICE_ACTION_SUSPEND);

Parents
  • Hi Ed

    Are you able to provide a bit more information about how the device is rebooted? 

    You mean to say it is just waking up from power down, or it is going through a full reset?

    Best regards
    Torbjørn

  • I found this while running on the debugger. When the device is reset I would assume all devices where drivers are provided would be initialized.  It works the first time after power is applied but if reprogrammed I get a null device pointer.

    This worked fine configured as spi nor but as qspi nor the device is not reinitializing at startup.  If I don't totally remove power the qspi does not initialize if it has been powered down and return a null device pointer.

    I could see this being an issue with mcu boot as well as debugging or reset from watchdog etc

Reply
  • I found this while running on the debugger. When the device is reset I would assume all devices where drivers are provided would be initialized.  It works the first time after power is applied but if reprogrammed I get a null device pointer.

    This worked fine configured as spi nor but as qspi nor the device is not reinitializing at startup.  If I don't totally remove power the qspi does not initialize if it has been powered down and return a null device pointer.

    I could see this being an issue with mcu boot as well as debugging or reset from watchdog etc

Children
Related