Skip to content

Commit 1ba00e5

Browse files
Revert "[nxp noup][zephyr] Migrate to Zephyr 3.7 LTS"
This reverts commit efa621a. Signed-off-by: marius-alex-tache <marius.tache@nxp.com>
1 parent 613e73b commit 1ba00e5

File tree

20 files changed

+161
-268
lines changed

20 files changed

+161
-268
lines changed

config/nxp/app/enable-gnu-std.cmake

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
#
2-
# Copyright (c) 2024 Project CHIP Authors
2+
# Copyright (c) 2024 Project CHIP Authors
33
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
77
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
8+
# http://www.apache.org/licenses/LICENSE-2.0
99
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
1515
#
1616

1717
add_library(gnu17 INTERFACE)
1818
target_compile_options(gnu17
19-
INTERFACE
20-
$<$<COMPILE_LANGUAGE:CXX>:-std=gnu++17>
21-
-Wno-stringop-truncation)
19+
INTERFACE
20+
$<$<COMPILE_LANGUAGE:CXX>:-std=gnu++17>
21+
-D_SYS__PTHREADTYPES_H_)
2222
target_link_libraries(app PRIVATE gnu17)

config/nxp/app/pre-zephyr.cmake

+6
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16+
17+
# Automatically find overlays defined at platform level
18+
# Those are usually used to change FLASH and RAM layouts
19+
if (EXISTS ${CHIP_ROOT}/src/platform/nxp/zephyr/boards/${BOARD}/${BOARD}.overlay)
20+
list(APPEND EXTRA_DTC_OVERLAY_FILE ${CHIP_ROOT}/src/platform/nxp/zephyr/boards/${BOARD}/${BOARD}.overlay)
21+
endif()

config/nxp/chip-module/CMakeLists.txt

+9-3
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,14 @@ endif()
174174
# ==============================================================================
175175
# Define 'chip-ota-image' target for building CHIP OTA image
176176
# ==============================================================================
177-
if(CONFIG_CHIP_OTA_REQUESTOR)
177+
if(EXISTS "${CHIP_ROOT}/src/platform/nxp/zephyr/boards/${BOARD}/${BOARD}.overlay")
178+
set(DTC_BOARD_OVERLAY "${CHIP_ROOT}/src/platform/nxp/zephyr/boards/${BOARD}/${BOARD}.overlay")
179+
else()
180+
set(DTC_BOARD_OVERLAY "")
181+
message(STATUS "No board overlay found")
182+
endif()
183+
184+
if (CONFIG_CHIP_OTA_REQUESTOR)
178185
if(CONFIG_MCUBOOT_SIGNATURE_KEY_FILE STREQUAL "")
179186
set(ZEPHYR_OUTPUT_NAME "zephyr")
180187
else()
@@ -186,8 +193,7 @@ if(CONFIG_CHIP_OTA_REQUESTOR)
186193
add_custom_target(build_mcuboot ALL
187194
COMMAND
188195
west build -b ${BOARD} -d build_mcuboot ${ZEPHYR_BASE}/../bootloader/mcuboot/boot/zephyr
189-
-- -DOVERLAY_CONFIG=${GLOBAL_BOOTLOADER_CONF_OVERLAY_FILE}
190-
-DEXTRA_DTC_OVERLAY_FILE="${DTC_OVERLAY_FILE};${EXTRA_DTC_OVERLAY_FILE}"
196+
-- -DOVERLAY_CONFIG=${GLOBAL_BOOTLOADER_CONF_OVERLAY_FILE} -DEXTRA_DTC_OVERLAY_FILE=${DTC_BOARD_OVERLAY}
191197
COMMAND
192198
cp ${PROJECT_BINARY_DIR}/../modules/connectedhomeip/build_mcuboot/zephyr/zephyr.bin ${PROJECT_BINARY_DIR}/zephyr.mcuboot.bin
193199
)

config/nxp/chip-module/Kconfig.defaults

+21-53
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ config POSIX_MAX_FDS
9191

9292
# Application stack size
9393
config MAIN_STACK_SIZE
94-
default 3072
94+
default 8192
9595

9696
config INIT_STACKS
9797
default y
9898

9999
config NET_MGMT_EVENT_STACK_SIZE
100-
default 1024
100+
default 2048
101101

102102
config NET_MGMT_EVENT_QUEUE_SIZE
103103
default 20
@@ -136,27 +136,21 @@ config NET_TC_TX_THREAD_BASE_PRIO
136136
config NET_TC_RX_THREAD_BASE_PRIO
137137
default 3
138138

139-
config NET_TC_SKIP_FOR_HIGH_PRIO
140-
default y
141-
142-
config NET_CONTEXT_PRIORITY
143-
default y
144-
145139
# Network buffers
146140
config NET_PKT_RX_COUNT
147-
default 14
141+
default 60
148142

149143
config NET_PKT_TX_COUNT
150-
default 14
144+
default 40
151145

152146
config NET_BUF_RX_COUNT
153-
default 36
147+
default 60
154148

155149
config NET_BUF_TX_COUNT
156-
default 36
150+
default 80
157151

158152
config NET_BUF_DATA_SIZE
159-
default 256
153+
default 1744
160154

161155
# Bluetooth Low Energy configs
162156

@@ -211,10 +205,7 @@ config BT_BUF_ACL_TX_SIZE
211205

212206
config BT_RX_STACK_SIZE
213207
default 2048 if NO_OPTIMIZATIONS && DEBUG
214-
default 1700
215-
216-
config BT_LONG_WQ_STACK_SIZE
217-
default 1024
208+
default 1600
218209

219210
config BT_DEVICE_NAME_GATT_WRITABLE
220211
bool
@@ -241,33 +232,16 @@ config NVS_LOOKUP_CACHE_SIZE
241232

242233
if CHIP_WIFI
243234

244-
choice NXP_WIFI_PART
245-
default NXP_RW610 if SOC_SERIES_RW6XX
246-
endchoice
247-
248-
config ZVFS_OPEN_MAX
249-
default 30
250-
251235
choice SCHED_ALGORITHM
252236
default SCHED_MULTIQ
253237
endchoice
254238

255-
choice WIFI_NM_WPA_SUPPLICANT_LOG_LEVEL_CHOICE
256-
default WIFI_NM_WPA_SUPPLICANT_LOG_LEVEL_INF
239+
choice WPA_SUPP_LOG_LEVEL_CHOICE
240+
default WPA_SUPP_LOG_LEVEL_ERR
257241
endchoice
258242

259-
choice WIFI_NM_WPA_SUPPLICANT_CRYPTO_BACKEND
260-
default WIFI_NM_WPA_SUPPLICANT_CRYPTO_ALT
261-
endchoice
262-
263-
config WIFI_NM_WPA_SUPPLICANT_THREAD_STACK_SIZE
264-
default 6144
265-
266-
config WIFI_NM_WPA_SUPPLICANT_WQ_STACK_SIZE
267-
default 5120
268-
269-
config WIFI_NM_WPA_SUPPLICANT_INF_MON
270-
default n
243+
config WPA_SUPP_THREAD_STACK_SIZE
244+
default 12288
271245

272246
config SYSTEM_WORKQUEUE_STACK_SIZE
273247
default 2048
@@ -283,7 +257,7 @@ config NET_IF_MCAST_IPV6_ADDR_COUNT
283257
default 8
284258

285259
config NET_SOCKETS_POLL_MAX
286-
default 14
260+
default 8
287261

288262
config NET_IPV4_FRAGMENT_MAX_COUNT
289263
default 3
@@ -298,7 +272,7 @@ config NET_IPV6_FRAGMENT_MAX_COUNT
298272
default 3
299273

300274
config NET_IPV6_FRAGMENT_MAX_PKT
301-
default 8
275+
default 7
302276

303277
config NET_IPV6_FRAGMENT_TIMEOUT
304278
default 3
@@ -309,7 +283,7 @@ config NET_MAX_ROUTERS
309283
default 1
310284

311285
config NET_MAX_CONN
312-
default 10
286+
default 4
313287

314288
config SHELL_STACK_SIZE
315289
default 2616
@@ -349,9 +323,6 @@ config MBEDTLS_ENTROPY_ENABLED
349323
config MBEDTLS_ZEPHYR_ENTROPY
350324
default y
351325

352-
config MBEDTLS_SSL_MAX_CONTENT_LEN
353-
default 8192
354-
355326
config MBEDTLS_ENABLE_HEAP
356327
default y
357328

@@ -376,16 +347,13 @@ config MBEDTLS_ECP_C
376347
config MBEDTLS_ECP_DP_SECP256R1_ENABLED
377348
default y
378349

379-
config CHIP_CRYPTO_PSA
380-
default y
381-
382350
if CHIP_CRYPTO_PSA
383351

384352
config MBEDTLS_PSA_CRYPTO_C
385353
default y
386354

387-
config WIFI_NM_WPA_SUPPLICANT_CRYPTO_MBEDTLS_PSA
388-
default y if WIFI_NM_WPA_SUPPLICANT
355+
config WPA_SUPP_CRYPTO_MBEDTLS_PSA
356+
default y if WPA_SUPP_CRYPTO
389357

390358
endif
391359

@@ -394,11 +362,11 @@ config MCUX_ELS_PKC
394362

395363
if MCUX_ELS_PKC
396364

397-
config MCUX_PSA_CRYPTO_DRIVER_ELS_PKC
398-
default y if CHIP_CRYPTO_PSA
365+
config KSDK_MBEDTLS
366+
default n
399367

400-
config MCUX_PSA_CRYPTO_DRIVER_ELS_PKC_THREAD
401-
default y if CHIP_CRYPTO_PSA
368+
config MCUX_PSA_CRYPTO_DRIVER_ELS_PKC
369+
default y if MBEDTLS_PSA_CRYPTO_C
402370

403371
config ENTROPY_GENERATOR
404372
default y

config/nxp/chip-module/Kconfig.features

+5-10
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,11 @@ config CHIP_WIFI
2424
default y
2525
select WIFI
2626
select WIFI_NXP
27-
select WIFI_NM_WPA_SUPPLICANT
28-
select WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE
29-
select WIFI_NM_WPA_SUPPLICANT_DPP
30-
select WIFI_NM_WPA_SUPPLICANT_EAPOL
31-
select WIFI_NM_WPA_SUPPLICANT_WPS
32-
select NET_L2_ETHERNET
33-
select NET_IPV4
34-
select NET_DHCPV4
35-
select DNS_RESOLVER
36-
imply THREAD_CUSTOM_DATA
27+
select WPA_SUPP
28+
select WPA_SUPP_AP
29+
select WPA_SUPP_WPS
30+
select WPA_SUPP_WPA3
31+
select WPA_SUPP_CRYPTO_ENTERPRISE
3732
imply MBEDTLS_ENTROPY_C
3833
imply NET_STATISTICS
3934
imply NET_PKT_TXTIME

config/zephyr/Kconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ menuconfig CHIP
2222
imply REQUIRES_FULL_LIBC
2323
imply NEWLIB_LIBC_NANO
2424
imply CBPRINTF_LIBC_SUBSTS
25-
imply POSIX_API if !ARCH_POSIX && !CHIP_NRF_PLATFORM
25+
imply POSIX_API if !ARCH_POSIX && !CHIP_NRF_PLATFORM && !CHIP_NXP_PLATFORM
2626
imply EVENTFD if !ARCH_POSIX
2727
imply REBOOT
2828
imply ENTROPY_GENERATOR
2929
imply NET_UDP
3030
imply NET_IPV6
3131
imply NET_CONFIG_NEED_IPV6
3232
imply NET_SOCKETS
33-
imply NET_SOCKETS_POSIX_NAMES if !ARCH_POSIX && CHIP_NRF_PLATFORM
33+
imply NET_SOCKETS_POSIX_NAMES if !ARCH_POSIX && (CHIP_NRF_PLATFORM || CHIP_NXP_PLATFORM)
3434
imply NETWORKING
3535
imply HWINFO
3636
imply FLASH

docs/guides/nxp/nxp_zephyr_ota_software_update.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,16 @@ The Flash is divided into different regions as follow :
3333
(candidate application).
3434

3535
The size reserved for each partition can be found in
36-
`<example folder>/boards/<board>.overlay`.
36+
`src/platform/nxp/zephyr/boards/board.overlay`.
3737

3838
Notes :
3939

4040
- When applicable, BLE/15.4/Wi-Fi firmware are embedded in the application
4141
binary, ensuring compatibility between the application and the controllers.
4242
- The sizes of the primary and secondary applications are provided as an
4343
example. The size can be changed by overriding the partitions located at
44-
`<board>.overlay`.
44+
`board.overlay`.(example:
45+
`src/platform/nxp/zephyr/boards/rd_rw612_bga.overlay`)
4546

4647
### MCUBoot Bootloader
4748

examples/all-clusters-app/nxp/zephyr/README.md

+14-21
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ NXP/Zephyr SDK.
3131

3232
The example supports:
3333

34-
- Matter over Wi-Fi with BLE commissioning
35-
- Matter OTA requestor
36-
- Matter Factory Data
34+
- Matter over Wi-Fi
3735

3836
The supported boards are:
3937

@@ -51,22 +49,18 @@ Prerequisites:
5149
- Follow instruction from [BUILDING.md](../../../../docs/guides/BUILDING.md)
5250
to setup the Matter environment
5351
- Follow instruction from
54-
[Getting Started Guide](https://docs.zephyrproject.org/3.7.0/develop/getting_started/index.html)
52+
[Getting Started Guide](https://docs.zephyrproject.org/latest/develop/getting_started/index.html)
5553
to setup a Zephyr workspace, however, the west init command to use is as
5654
follows:
5755

5856
```shell
59-
$ west init zephyrproject -m https://github.com/nxp-zephyr/nxp-zsdk.git --mr zsdk_lts3
57+
$ west init zephyrproject -m https://github.com/nxp-zephyr-ear/zephyr.git --mr zephyr_rw61x_v3.6_RFP
6058
```
6159

62-
> **Note**: While some of NXP platforms are supported in Zephyr upstream, we
63-
> recommend using nxp-zsdk downstream to get access to all NXP features
64-
> that are not upstream yet.
65-
> While you can decide to use nxp-zsdk top of tree, we recommend using
66-
> a proper release tag delivered by NXP. This will ensure a certain level
67-
> of quality of the nxp-zsdk in use. Currently, we highly recommend using
68-
> the `zsdk_lts3` tag, based on Zephyr 3.7 LTS release.
69-
> Reach to your NXP contact for more details.
60+
> **Note**: Currently, supported NXP platforms in Zephyr targeting Matter are
61+
> not available in the official Zephyr repo, you'll have to use the NXP fork
62+
> `https://github.com/nxp-zephyr-ear/zephyr` github repo. Reach to your NXP
63+
> contact for more details.
7064
7165
Steps to build the example, targeting `rd_rw612_bga` board:
7266

@@ -85,16 +79,15 @@ source <path to zephyr repo>/zephyr-env.sh
8579
3. Run west build command:
8680

8781
```shell
88-
west build -b rd_rw612_bga -p auto -d build_zephyr <path to example folder>
82+
west build -b rd_rw612_bga -p <path to example folder>
8983
```
9084

91-
A folder `build_zephyr` will be created in the same folder you run the command from.
92-
The binaries will be created in `build_zephyr/zephyr` with the name `zephyr.elf` and
93-
`zephyr.bin`. We recommend using the `-d build_zephyr` if you are building from Matter
94-
repo root folder as a build folder already exists and is tracked by git.
85+
By default, a folder `build` will be created in the same folder you run the
86+
command from. The binaries will be created in `build/zephyr` with the name
87+
`zephyr.elf` and `zephyr.bin`.
9588

9689
You can get more details on `west build` with
97-
[Zephyr's building guide](https://docs.zephyrproject.org/3.7.0/develop/west/build-flash-debug.html#building-west-build)
90+
[Zephyr's building guide](https://docs.zephyrproject.org/latest/develop/west/build-flash-debug.html#building-west-build)
9891

9992
<a name="flashing-and-debugging"></a>
10093

@@ -109,7 +102,7 @@ west flash -i <J-Link serial number>
109102
```
110103

111104
You can get more details on `west flash` with
112-
[Zephyr's flashing guide](https://docs.zephyrproject.org/3.7.0/develop/west/build-flash-debug.html#flashing-west-flash)
105+
[Zephyr's flashing guide](https://docs.zephyrproject.org/latest/develop/west/build-flash-debug.html#flashing-west-flash)
113106

114107
> **Note**: `west flash` will not start a debug session, it will only flash and
115108
> reset the device
@@ -120,7 +113,7 @@ To debug a Matter with Zephyr application, you could use several methods:
120113

121114
- [MCUXpresso IDE (version >= 11.6.0)](https://www.nxp.com/design/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-integrated-development-environment-ide:MCUXpresso-IDE)
122115
- `west debug`
123-
[Zephyr's debugging guide](https://docs.zephyrproject.org/3.7.0/develop/west/build-flash-debug.html#id29)
116+
[Zephyr's debugging guide](https://docs.zephyrproject.org/latest/develop/west/build-flash-debug.html#id29)
124117

125118
> **Note**: As the build provides an elf file, any compatible debugging tool can
126119
> be used.

0 commit comments

Comments
 (0)