Hi all,

Hi all,
Hello Wayne,
How have you set the QSPI in the application? Can I see the board file ( dts, pincontrol, overlay) of your application? Any external flash chip is set under QSPI node? If it is then you need to disbale the default flash chip and properly configure the new on in device tree overlay file.
&mx25r64 { status = "disabled"; };
Do you have HFXO on your board?
Also, there is a known errata [244] QSPI: External flash and QSPI returns erroneous data when the SoftDevice is running about this erroneous data while using QSPU for nRF5SDK.
The workaround says ''Ensure that the clock source is not switched during the QSPI operations. For example, force the HFXO enabled when SoftDevice is used by calling sd_clock_hfclk_request() after sd_softdevice_enable() during QSPI operations''
I think same workaround can be applicable using MPSL clock module for NCS. The MPSL clock module API enables the application to safely request and release the HFXO while the protocol stacks are enabled. MPSL can continue to use the HFXO after it is released if it is requested by protocol stacks. HFXO is stopped when it is no longer needed.
mpsl_clock_hfclk_request(); // Perform QSPI operations mpsl_clock_hfclk_release();
for direct register access can use following code before starting the QSPI operation
NRF_CLOCK->TASKS_HFCLKSTART = 1; while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0); NRF_CLOCK->EVENTS_HFCLKSTARTED = 0; // Perform QSPI operations
You can try all these probable solutions and also can send me the board file, so, in the meantime I can check if something wrong with the configuration of QSPI node.
Thanks.
BR
Kazi
Hello Wayne,
How have you set the QSPI in the application? Can I see the board file ( dts, pincontrol, overlay) of your application? Any external flash chip is set under QSPI node? If it is then you need to disbale the default flash chip and properly configure the new on in device tree overlay file.
&mx25r64 { status = "disabled"; };
Do you have HFXO on your board?
Also, there is a known errata [244] QSPI: External flash and QSPI returns erroneous data when the SoftDevice is running about this erroneous data while using QSPU for nRF5SDK.
The workaround says ''Ensure that the clock source is not switched during the QSPI operations. For example, force the HFXO enabled when SoftDevice is used by calling sd_clock_hfclk_request() after sd_softdevice_enable() during QSPI operations''
I think same workaround can be applicable using MPSL clock module for NCS. The MPSL clock module API enables the application to safely request and release the HFXO while the protocol stacks are enabled. MPSL can continue to use the HFXO after it is released if it is requested by protocol stacks. HFXO is stopped when it is no longer needed.
mpsl_clock_hfclk_request(); // Perform QSPI operations mpsl_clock_hfclk_release();
for direct register access can use following code before starting the QSPI operation
NRF_CLOCK->TASKS_HFCLKSTART = 1; while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0); NRF_CLOCK->EVENTS_HFCLKSTARTED = 0; // Perform QSPI operations
You can try all these probable solutions and also can send me the board file, so, in the meantime I can check if something wrong with the configuration of QSPI node.
Thanks.
BR
Kazi