Skip to content

Commit dc6f9a5

Browse files
committed
doc: known_issues: add nRF54L10 NVM size issue in nRF Desktop application
Defined a new known issue that describes the incorrect partition map for the nrf54l15dk/nrf54l10/cpuapp board target in the nRF Desktop application. Ref: NCSDK-34584 Signed-off-by: Kamil Piszczek <[email protected]>
1 parent e2c73b2 commit dc6f9a5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

doc/nrf/releases_and_maturity/known_issues.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2125,6 +2125,36 @@ The issues in this section are related to the :ref:`nrf_desktop` application.
21252125
nRF Desktop is also affected by :ref:`hogp_readme` library's issue :ref:`NCSDK-30288 <ncsdk_30288>`.
21262126
The issue might cause accessing data under the ``NULL`` pointer in case of Bluetooth disconnection while forwarding a configuration channel operation in the :ref:`nrf_desktop_hid_forward`.
21272127

2128+
.. rst-class:: v3-0-2 v3-0-1 v3-0-0
2129+
2130+
NCSDK-34584: The :ref:`nrf_desktop` application uses incorrect partition map for the nRF54L10 SoC
2131+
In the :ref:`nrf_desktop` application, a partition map is incorrectly defined for each build configuration that is supported by the ``nrf54l15dk/nrf54l10/cpuapp`` board target.
2132+
In the |NCS| releases affected by this issue, it was assumed that the NVM size of the nRF54L10 SoC was 10 KB larger than the actual one.
2133+
The NVM size of the nRF54L10 SoC is equal to 1012 KB.
2134+
2135+
The workaround fix for the nRF54L10 partition map is a breaking change and cannot be performed using DFU.
2136+
The DFU procedure will fail if you attempt to upgrade the application firmware based on one of the |NCS| releases that is affected by this issue.
2137+
2138+
**Affected platforms:** nRF54L10
2139+
2140+
**Workaround:** Manually cherry-pick and apply the commit with the fix from the ``main`` branch of the ``sdk-nrf`` repository (commit hash: ``2658ceea216a9020450206347ad8a08d44b53e5c``).
2141+
Additionally, you need to manually update the :file:`boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp.dts` DTS file in your local copy of the ``sdk-zephyr`` repository to avoid issues with build asserts that are used for RRAM validation.
2142+
Correct the ``cpuapp_rram`` DTS node in the following way:
2143+
2144+
.. code-block::
2145+
2146+
&cpuapp_rram {
2147+
reg = <0x0 DT_SIZE_K(1012)>;
2148+
};
2149+
2150+
Then, correct the ``storage_partition`` node in the following way:
2151+
2152+
.. code-block::
2153+
2154+
storage_partition: partition@f6000 {
2155+
reg = <0xf6000 DT_SIZE_K(28)>;
2156+
};
2157+
21282158
.. rst-class:: v3-0-2 v3-0-1 v3-0-0 v2-9-0-nRF54H20-1 v2-9-2 v2-9-1 v2-9-0 v2-8-0 v2-7-0
21292159

21302160
NCSDK-30504: USB High-Speed slight HID report rate drop

0 commit comments

Comments
 (0)