2023-05-23 21:45:00 +07:00
|
|
|
include_guard()
|
2023-05-06 15:14:54 +07:00
|
|
|
|
|
|
|
if (NOT BOARD)
|
|
|
|
message(FATAL_ERROR "BOARD not specified")
|
|
|
|
endif ()
|
|
|
|
|
2023-06-01 12:36:08 +07:00
|
|
|
# enable LTO
|
|
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
|
2023-04-21 18:10:28 +07:00
|
|
|
# toolchain set up
|
|
|
|
set(CMAKE_SYSTEM_PROCESSOR cortex-m7 CACHE INTERNAL "System Processor")
|
2023-05-19 14:46:39 +07:00
|
|
|
set(CMAKE_TOOLCHAIN_FILE ${TOP}/tools/cmake/toolchain/arm_${TOOLCHAIN}.cmake)
|
2023-04-20 16:55:48 +07:00
|
|
|
|
2023-05-08 00:24:48 +07:00
|
|
|
set(FAMILY_MCUS MIMXRT CACHE INTERNAL "")
|
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
# include board specific
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/boards/${BOARD}/board.cmake)
|
2023-05-05 19:15:19 +07:00
|
|
|
|
2023-04-20 14:09:38 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
#------------------------------------
|
|
|
|
# BOARD_TARGET
|
|
|
|
#------------------------------------
|
|
|
|
# only need to be built ONCE for all examples
|
|
|
|
set(BOARD_TARGET board_${BOARD})
|
|
|
|
if (NOT TARGET ${BOARD_TARGET})
|
2023-04-20 14:09:38 +07:00
|
|
|
set(SDK_DIR ${TOP}/hw/mcu/nxp/mcux-sdk)
|
2023-05-06 15:14:54 +07:00
|
|
|
set(CMSIS_DIR ${TOP}/lib/CMSIS_5)
|
2023-04-20 14:09:38 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
add_library(${BOARD_TARGET} STATIC
|
2023-04-20 14:09:38 +07:00
|
|
|
${SDK_DIR}/drivers/common/fsl_common.c
|
|
|
|
${SDK_DIR}/drivers/igpio/fsl_gpio.c
|
|
|
|
${SDK_DIR}/drivers/lpuart/fsl_lpuart.c
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/system_${MCU_VARIANT}.c
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/xip/fsl_flexspi_nor_boot.c
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/project_template/clock_config.c
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/drivers/fsl_clock.c
|
|
|
|
)
|
2023-05-06 15:14:54 +07:00
|
|
|
target_compile_definitions(${BOARD_TARGET} PUBLIC
|
|
|
|
__ARMVFP__=0
|
|
|
|
__ARMFPV5__=0
|
|
|
|
XIP_EXTERNAL_FLASH=1
|
|
|
|
XIP_BOOT_HEADER_ENABLE=1
|
|
|
|
)
|
|
|
|
target_include_directories(${BOARD_TARGET} PUBLIC
|
|
|
|
${CMSIS_DIR}/CMSIS/Core/Include
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/project_template
|
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/drivers
|
|
|
|
${SDK_DIR}/drivers/common
|
|
|
|
${SDK_DIR}/drivers/igpio
|
|
|
|
${SDK_DIR}/drivers/lpuart
|
|
|
|
)
|
|
|
|
update_board(${BOARD_TARGET})
|
2023-04-20 14:09:38 +07:00
|
|
|
|
2023-05-19 13:32:49 +07:00
|
|
|
if (NOT DEFINED LD_FILE_${TOOLCHAIN})
|
2023-06-02 13:27:18 +07:00
|
|
|
set(LD_FILE_GCC ${SDK_DIR}/devices/${MCU_VARIANT}/gcc/${MCU_VARIANT}xxxxx_flexspi_nor.ld)
|
2023-05-19 13:32:49 +07:00
|
|
|
endif ()
|
|
|
|
|
2023-04-20 14:09:38 +07:00
|
|
|
if (TOOLCHAIN STREQUAL "gcc")
|
2023-05-06 15:14:54 +07:00
|
|
|
target_sources(${BOARD_TARGET} PUBLIC
|
2023-04-20 14:09:38 +07:00
|
|
|
${SDK_DIR}/devices/${MCU_VARIANT}/gcc/startup_${MCU_VARIANT}.S
|
|
|
|
)
|
2023-05-06 15:14:54 +07:00
|
|
|
target_link_options(${BOARD_TARGET} PUBLIC
|
2023-06-02 13:27:18 +07:00
|
|
|
"LINKER:--script=${LD_FILE_GCC}"
|
2023-05-08 17:25:47 +07:00
|
|
|
# nanolib
|
2023-05-06 15:14:54 +07:00
|
|
|
--specs=nosys.specs
|
|
|
|
--specs=nano.specs
|
2023-05-08 17:25:47 +07:00
|
|
|
# force linker to look for these symbols
|
|
|
|
-Wl,-uimage_vector_table
|
|
|
|
-Wl,-ug_boot_data
|
2023-04-20 16:42:13 +07:00
|
|
|
)
|
2023-04-21 20:55:44 +07:00
|
|
|
else ()
|
|
|
|
# TODO support IAR
|
2023-04-20 14:09:38 +07:00
|
|
|
endif ()
|
2023-05-06 15:14:54 +07:00
|
|
|
endif () # BOARD_TARGET
|
|
|
|
|
2023-05-25 21:27:26 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
#------------------------------------
|
|
|
|
# Functions
|
|
|
|
#------------------------------------
|
2023-05-25 17:27:05 +07:00
|
|
|
function(family_configure_example TARGET)
|
2023-06-01 12:36:08 +07:00
|
|
|
family_configure_common(${TARGET})
|
2023-04-20 14:09:38 +07:00
|
|
|
|
2023-05-09 10:02:44 +07:00
|
|
|
#---------- Port Specific ----------
|
|
|
|
# These files are built for each example since it depends on example's tusb_config.h
|
|
|
|
target_sources(${TARGET} PUBLIC
|
|
|
|
# TinyUSB Port
|
2023-05-06 15:14:54 +07:00
|
|
|
${TOP}/src/portable/chipidea/ci_hs/dcd_ci_hs.c
|
|
|
|
${TOP}/src/portable/chipidea/ci_hs/hcd_ci_hs.c
|
|
|
|
${TOP}/src/portable/ehci/ehci.c
|
|
|
|
# BSP
|
|
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/family.c
|
2023-05-08 00:24:48 +07:00
|
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/../board.c
|
2023-05-06 15:14:54 +07:00
|
|
|
)
|
2023-05-09 10:02:44 +07:00
|
|
|
target_include_directories(${TARGET} PUBLIC
|
2023-05-10 18:15:48 +07:00
|
|
|
# family, hw, board
|
2023-04-21 18:10:28 +07:00
|
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}
|
|
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/../../
|
|
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/boards/${BOARD}
|
2023-04-20 14:09:38 +07:00
|
|
|
)
|
2023-04-21 18:10:28 +07:00
|
|
|
|
2023-06-02 11:42:17 +07:00
|
|
|
# Add TinyUSB
|
|
|
|
family_add_tinyusb(${TARGET} OPT_MCU_MIMXRT)
|
2023-05-05 19:15:19 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
# Link dependencies
|
2023-05-09 10:02:44 +07:00
|
|
|
target_link_libraries(${TARGET} PUBLIC ${BOARD_TARGET} ${TARGET}-tinyusb)
|
2023-05-07 22:09:08 +07:00
|
|
|
|
2023-06-02 11:42:17 +07:00
|
|
|
# Flashing
|
2023-05-19 16:27:07 +07:00
|
|
|
family_flash_jlink(${TARGET})
|
|
|
|
family_flash_nxplink(${TARGET})
|
2023-06-02 11:42:17 +07:00
|
|
|
#family_flash_pyocd(${TARGET})
|
2023-04-21 18:10:28 +07:00
|
|
|
endfunction()
|
|
|
|
|
2023-05-05 19:15:19 +07:00
|
|
|
|
2023-04-21 18:10:28 +07:00
|
|
|
function(family_configure_device_example TARGET)
|
2023-05-25 17:27:05 +07:00
|
|
|
family_configure_example(${TARGET})
|
2023-04-21 18:10:28 +07:00
|
|
|
endfunction()
|
2023-05-08 00:24:48 +07:00
|
|
|
|
|
|
|
function(family_configure_host_example TARGET)
|
2023-05-25 17:27:05 +07:00
|
|
|
family_configure_example(${TARGET})
|
2023-05-08 00:24:48 +07:00
|
|
|
endfunction()
|
2023-05-10 11:15:11 +07:00
|
|
|
|
|
|
|
function(family_configure_dual_usb_example TARGET)
|
2023-05-25 17:27:05 +07:00
|
|
|
family_configure_example(${TARGET})
|
2023-05-10 11:15:11 +07:00
|
|
|
endfunction()
|