1# NXP S32ZE MCUs series
2
3# Copyright 2022,2024 NXP
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_SERIES_S32ZE
7
8config NUM_IRQS
9	# must be >= the highest interrupt number used
10	default 991
11
12config FPU
13	default y
14
15config SYS_CLOCK_HW_CYCLES_PER_SEC
16	default 2000000
17
18config MAIN_STACK_SIZE
19	default 1024
20
21config CACHE_MANAGEMENT
22	default y
23
24if ETH_DRIVER && NET_L2_ETHERNET
25
26# NETC drops TCP/UDP packets with invalid checksum
27config NET_TCP_CHECKSUM
28	default n
29
30config NET_UDP_CHECKSUM
31	default n
32
33endif # ETH_DRIVER && NET_L2_ETHERNET
34
35endif # SOC_SERIES_S32ZE
36