Skip to content

Commit 14abaac

Browse files
doc: Add a known issue entry for Matter nRF54lm20 bug
Described an issue that leads to a crash on nRF54lm20 running Matter samples. Signed-off-by: Arkadiusz Balys <[email protected]>
1 parent 8f04a50 commit 14abaac

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

doc/nrf/releases_and_maturity/known_issues.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,27 @@ Matter
605605

606606
The issues in this section are related to the :ref:`ug_matter` protocol.
607607

608+
.. rst-class:: v3-1-1
609+
610+
KRKNWK-20774: Fatal error on nRF54LM20 SoC after enabling the :kconfig:option:`CONFIG_PICOLIBC` Kconfig option or dynamic heap memory allocation
611+
The nRF54LM20 SoC crashes after enabling the :kconfig:option:`CONFIG_PICOLIBC` Kconfig option or dynamic heap memory allocation while running a Matter sample.
612+
The root cause is that the nRF54LM20 DK devicetree overlay in the Matter samples configures the SRAM memory incorrectly.
613+
As a result, a restricted region of the SRAM is used, which leads to a crash.
614+
615+
**Workaround:** Remove the following configuration from the :file:`boards/nrf54lm20dk_nrf54lm20a_cpuapp.overlay`, :file:`boards/nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay`, :file:`sysbuild/mcuboot/boards/nrf54lm20dk_nrf54lm20a_cpuapp.conf`, and :file:`sysbuild/mcuboot/boards/nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf` files of the Matter sample:
616+
617+
.. code-block:: console
618+
619+
/* restore full RRAM and SRAM space - by default some parts are dedicated to FLRP */
620+
&cpuapp_rram {
621+
reg = <0x0 DT_SIZE_K(2036)>;
622+
};
623+
624+
&cpuapp_sram {
625+
reg = <0x20000000 DT_SIZE_K(512)>;
626+
ranges = <0x0 0x20000000 0x80000>;
627+
};
628+
608629
.. rst-class:: v3-1-0 v3-0-2 v3-0-1 v3-0-0
609630

610631
KRKNWK-20815: The NordicDevKit cluster does not work with the 0.1.0 version of the `Matter Cluster Editor app`_

0 commit comments

Comments
 (0)