27 lines
1.1 KiB
CMake
27 lines
1.1 KiB
CMake
# Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or
|
|
# an affiliate of Cypress Semiconductor Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(template_dir ${ZEPHYR_HAL_INFINEON_MODULE_DIR}/mtb-template-cat1)
|
|
set(cat1a_dir ${template_dir}/files/templates/cat1a)
|
|
set(cat1b_dir ${template_dir}/files/templates/cat1b)
|
|
|
|
if(CONFIG_SOC_FAMILY_INFINEON_CAT1A)
|
|
zephyr_include_directories(${cat1a_dir}/COMPONENT_MTB)
|
|
zephyr_include_directories(${cat1a_dir}/COMPONENT_MTB/COMPONENT_CM33/HEADER_FILES)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_CPU_CORTEX_M4
|
|
${cat1a_dir}/COMPONENT_MTB/COMPONENT_CM4/system_psoc6_cm4.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CPU_CORTEX_M0PLUS
|
|
${cat1a_dir}/COMPONENT_MTB/COMPONENT_CM0P/system_psoc6_cm0plus.c)
|
|
endif()
|
|
|
|
|
|
# Add support cyw20829 (cat1b)
|
|
if(CONFIG_SOC_FAMILY_INFINEON_CAT1B)
|
|
zephyr_include_directories(${cat1b_dir}/COMPONENT_MTB)
|
|
zephyr_include_directories(${cat1b_dir}/COMPONENT_MTB/COMPONENT_CM33/HEADER_FILES)
|
|
zephyr_library_sources(${cat1b_dir}/COMPONENT_MTB/COMPONENT_CM33/system_cyw20829.c)
|
|
endif()
|