1# Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or
2# an affiliate of Cypress Semiconductor Corporation
3# SPDX-License-Identifier: Apache-2.0
4
5# Infineon CYW20829 based MCU default configuration
6
7if SOC_DIE_CYW20829
8
9config INFINEON_CAT1_LP_TIMER
10	bool
11
12config CORTEX_M_SYSTICK
13	default n if INFINEON_CAT1_LP_TIMER
14
15config NUM_IRQS
16	default 70
17
18config SYS_CLOCK_HW_CYCLES_PER_SEC
19	default 96000000
20
21config BUILD_OUTPUT_ADJUST_LMA
22	depends on XIP
23	default "0x60000000 - $(dt_node_reg_addr_hex,$(dt_nodelabel_path,flash0))"
24
25config MAIN_STACK_SIZE
26	default 2048
27
28# add additional die specific params
29
30endif # SOC_DIE_CYW20829
31