Matter hardware and memory requirements

Hardware that runs Matter protocol applications must meet specification requirements, including providing the right amount of flash memory and being able to run Bluetooth LE and Thread or Wi-Fi concurrently.

Supported SoCs

Currently the following SoCs from Nordic Semiconductor are supported for use with the Matter protocol:

  • nRF5340 (Matter over Thread and Matter over Wi-Fi through the nrf7002ek_nrf7002 shield)

  • nRF5340 + nRF7002 (Matter over Thread and Matter over Wi-Fi)

  • nRF52840 (Matter over Thread)

Front-End Modules

SoCs from Nordic Semiconductor that can run the Matter protocol over Thread can also work with external Front-End Modules. For more information about the FEM support in the nRF Connect SDK, see Working with RF front-end modules and nRF21540 DK.

External flash

For the currently supported SoCs, you must use an external memory with at least 1 MB of flash for nRF52840 and 1.5MB for nRF5340. This is required to perform the DFU operation.

The development kits for the supported SoCs from Nordic Semiconductor are supplied with the MX25R64 type of external flash that meets these memory requirements. However, it is possible to configure the SoCs with different QSPI or SPI memory if it is supported by Zephyr. For this purpose, check the reference design for Nordic DKs for information about how to connect the external memory with SoC, specifically whether the pins are designed for the QSPI or the high-speed SPIM operations.

RAM and flash memory requirements

RAM and flash memory requirement values differ depending on the DK and the programmed sample.

The following tables list memory requirement values for Matter samples.

Values are provided in kilobytes (KB).

The following table lists memory requirements for samples running on the nRF52840 DK (nrf52840dk_nrf52840).

Sample

MCUboot ROM

Application ROM

Factory data

Settings

Total ROM

Total RAM (incl. static HEAP)

Light Bulb (Debug)

28

896

4

32

960

231

Light Bulb (Release)

28

740

4

32

804

222

Light Switch (Debug)

28

841

4

32

905

222

Light Switch (Release)

28

695

4

32

759

213

Lock (Debug)

28

861

4

32

925

222

Lock (Release)

28

697

4

32

761

213

Template (Debug)

28

815

4

32

879

221

Template (Release)

28

674

4

32

738

212

Window Covering (Debug)

28

833

4

32

897

221

Window Covering (Release)

28

688

4

32

752

213

Reference Matter memory layouts

The following tabs show how the Matter stack architecture in the nRF Connect SDK translates to actual memory maps for each of the available Matter platform designs (System-on-Chip, multiprotocol). The memory values match RAM and flash memory requirements listed above.

Each tab shows the memory maps for the development kits supported by the Matter protocol, including two memory maps for the Thingy:53: Matter weather station, which uses Nordic Thingy:53.

For more information about configuration of memory layouts in Matter, see Partition layout.

The following memory map is valid for Matter applications running on the nRF52840 DK (nrf52840dk_nrf52840).

Internal flash (size: 0x100000 = 1024kB)

Partition

Offset

Size

Partition elements

Element offset

Element size

Bootloader (mcuboot)

0kB (0x0)

28kB (0x7000)

Application (mcuboot_primary/app)

28kB (0x7000)

960kB (0xf0000)

mcuboot_pad

28kB (0x7000)

512B (0x200)

mcuboot_primary_app

28.5kB (0x7200)

959.5kB (0xefe00)

Factory data (factory_data)

988kB (0xf7000)

4kB (0x1000)

Non-volatile storage (settings_storage)

992kB (0xf8000)

32kB (0x8000)

SRAM primary (size: 0x40000 = 256kB)

SRAM is located at the address 0x20000000 in the memory address space of the application.

Partition

Offset

Size

Partition elements

Element offset

Element size

Static RAM (sram_primary)

0kB (0x0)

256kB (0x40000)

External flash (size: 0x800000 = 8192kB)

Partition

Offset

Size

Partition elements

Element offset

Element size

Application DFU (mcuboot_secondary)

0kB (0x0)

960kB (0xf0000)

Free space (external_flash)

960kB (0xf0000)

7232kB (0x710000)

You can generate Partition Manager’s ASCII representation of these tables by running the following command for your respective <build_target>:

west build -b <build_target> -t partition_manager_report

For example, for the nrf7002dk_nrf5340_cpuapp build target, the command is as follows:

west build -b nrf7002dk_nrf5340_cpuapp -t partition_manager_report