Skip to content

Commit 3128797

Browse files
bjarki-andreasencarlescufi
authored andcommitted
migration_guide_3.2: mention changes to PM_S2RAM for nRF54H20
Mention changes to kconfig options PM_S2RAM and PM_S2RAM_CUSTOM_MARKING and how to migrate to adhere to the changes which affect the nRF54H20. Signed-off-by: Bjarki Arge Andreasen <[email protected]>
1 parent 9a8e48c commit 3128797

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

doc/nrf/releases_and_maturity/migration/migration_guide_3.2.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,21 @@ nRF54H20 SoC binaries
4242
* :ref:`abi_compatibility` for details about the SoC binaries.
4343
* :ref:`ug_nrf54h20_ironside_se_update` for instructions on updating the SoC binaries.
4444

45+
nRF54H20 power management
46+
-------------------------
47+
48+
.. toggle::
49+
50+
* The Kconfig options :kconfig:option:`PM_S2RAM` and :kconfig:option:`PM_S2RAM_CUSTOM_MARKING` have been reworked to be managed automatically based on the suspend-to-ram ``power-states`` in the devicetree.
51+
Any occurrences of ``CONFIG_PM_S2RAM=y`` and ``CONFIG_PM_S2RAM_CUSTOM_MARKING=y`` must be removed.
52+
Any occurrence of ``CONFIG_PM_S2RAM=n`` or when the code requires S2RAM state to be disabled (the default value of :kconfig:option:`PM_S2RAM` has changed from ``n`` to ``y``) must be replaced by disabling the ``s2ram`` power state in the devicetree.
53+
54+
.. code-block:: dts
55+
56+
&s2ram {
57+
status = "disabled";
58+
};
59+
4560
Samples and applications
4661
========================
4762

0 commit comments

Comments
 (0)