We are trying to use mcumgr/mcuboot with Zephyr on nRF53. During development, we have enabled the Zephyr shell functionality and would like to use mcumgr with it (CONFIG_MCUMGR_SMP_SHELL=y).
The default interrupt-driven UARTE driver implementation on nRF53 does not seem to work reliably in this scenario: received bytes will be lost, causing the mcumgr connection to time out. Are you aware of this issue? It manifests when trying to upload an image at 460800 baud.
We have tried modifying shell_uart.c to use the async API (CONFIG_UART_ASYNC_API=y). This works so far, but now we run into a problem when trying to combine this with power management.
After the serial cable is disconnected, RX will go low and we receive the UART_RX_DISABLED event. We then set the UART to DEVICE_PM_LOW_POWER_STATE and configure an interrupt on RX order to re-enable it when the cable is again connected. When calling device_set_power_state with DEVICE_PM_ACTIVE_STATE, the new active state is not stored by the driver.
uart_nrfx_uarte.c has the following code in the function uarte_nrfx_set_power_state:
if (new_state == DEVICE_PM_ACTIVE_STATE) { uarte_nrfx_pins_enable(dev, true); nrf_uarte_enable(uarte); #ifdef CONFIG_UART_ASYNC_API if (hw_rx_counting_enabled(get_dev_data(dev))) { nrfx_timer_enable(&get_dev_config(dev)->timer); } if (get_dev_data(dev)->async) { return; } #endif if (nrf_uarte_rx_pin_get(uarte) != NRF_UARTE_PSEL_DISCONNECTED) { nrf_uarte_task_trigger(uarte, NRF_UARTE_TASK_STARTRX); } data->pm_state = new_state; } else {
If the async API is used (async != NULL), the function returns early and data->pm_state is never set to the new state.
Is this on purpose and how is the power management supposed to be used with the async API?