Skip to content

Commit 5c104ce

Browse files
krish2718rlubos
authored andcommitted
snippets: Add storing nRF70 patches in external flash
This adds both DTS and configuration overlays that enable to store nRF70 patches in external flash. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
1 parent 28afedb commit 5c104ce

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ Kconfig* @tejlmand
207207
/snippets/nrf91-modem-trace-uart/ @eivindj-nordic
208208
/snippets/tfm-enable-share-uart/ @nrfconnect/ncs-cia
209209
/snippets/nrf70-debug/ @krish2718 @sachinthegreen
210+
/snippets/nrf70-fw-patch-ext-flash/ @krish2718 @sachinthegreen
210211
/subsys/audio_module/ @koffes @alexsven @erikrobstad @rick1082 @gWacey
211212
/subsys/bluetooth/ @alwa-nordic @jori-nordic @carlescufi @KAGA164
212213
/subsys/bluetooth/mesh/ @ludvigsj
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/* Copyright (c) 2023 Nordic Semiconductor ASA
2+
*
3+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
4+
*/
5+
6+
&qspi {
7+
mx25r64: mx25r6435f@0 {
8+
partitions {
9+
compatible = "fixed-partitions";
10+
#address-cells = <1>;
11+
#size-cells = <1>;
12+
nrf70_fw_partition: partition@0 {
13+
label = "nrf70_fw_partition";
14+
reg = <0x0 DT_SIZE_K(128)>;
15+
};
16+
};
17+
};
18+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2023 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
CONFIG_NRF_WIFI_PATCHES_EXT_FLASH_STORE=y
8+
CONFIG_NRF_WIFI_FW_FLASH_CHUNK_SIZE=8192
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name: nrf70-fw-patch-ext-flash
2+
append:
3+
EXTRA_DTC_OVERLAY_FILE: fw-patch-ext-flash.overlay
4+
EXTRA_CONF_FILE: overlay-fw-patch-ext-flash.conf

0 commit comments

Comments
 (0)