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-02 15:26:16 +07:00
|
|
|
set(SDK_DIR ${TOP}/hw/mcu/nxp/mcux-sdk)
|
|
|
|
set(CMSIS_DIR ${TOP}/lib/CMSIS_5)
|
|
|
|
|
|
|
|
# include board specific
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/boards/${BOARD}/board.cmake)
|
2023-06-01 12:36:08 +07:00
|
|
|
|
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-06-16 11:26:38 +07:00
|
|
|
set(FAMILY_MCUS MIMXRT1XXX CACHE INTERNAL "")
|
2023-05-08 00:24:48 +07:00
|
|
|
|
2023-06-02 15:26:16 +07:00
|
|
|
# enable LTO if supported
|
|
|
|
include(CheckIPOSupported)
|
|
|
|
check_ipo_supported(RESULT IPO_SUPPORTED)
|
|
|
|
if (IPO_SUPPORTED)
|
|
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
endif ()
|
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
|
2023-06-02 15:26:16 +07:00
|
|
|
function(add_board_target BOARD_TARGET)
|
|
|
|
if (NOT TARGET ${BOARD_TARGET})
|
|
|
|
add_library(${BOARD_TARGET} STATIC
|
|
|
|
${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
|
|
|
|
)
|
|
|
|
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
|
|
|
|
)
|
2023-04-20 14:09:38 +07:00
|
|
|
|
2023-06-02 15:26:16 +07:00
|
|
|
update_board(${BOARD_TARGET})
|
|
|
|
|
|
|
|
# LD_FILE and STARTUP_FILE can be defined in board.cmake
|
|
|
|
if (NOT DEFINED LD_FILE_${CMAKE_C_COMPILER_ID})
|
|
|
|
set(LD_FILE_GNU ${SDK_DIR}/devices/${MCU_VARIANT}/gcc/${MCU_VARIANT}xxxxx_flexspi_nor.ld)
|
|
|
|
#set(LD_FILE_IAR ${SDK_DIR}/devices/${MCU_VARIANT}/gcc/${MCU_VARIANT}xxxxx_flexspi_nor.ld)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (NOT DEFINED STARTUP_FILE_${CMAKE_C_COMPILER_ID})
|
|
|
|
set(STARTUP_FILE_GNU ${SDK_DIR}/devices/${MCU_VARIANT}/gcc/startup_${MCU_VARIANT}.S)
|
|
|
|
#set(STARTUP_FILE_IAR ${SDK_DIR}/devices/${MCU_VARIANT}/gcc/startup_${MCU_VARIANT}.S)
|
|
|
|
endif ()
|
2023-05-19 13:32:49 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
target_sources(${BOARD_TARGET} PUBLIC
|
2023-06-02 15:26:16 +07:00
|
|
|
${STARTUP_FILE_${CMAKE_C_COMPILER_ID}}
|
2023-04-20 14:09:38 +07:00
|
|
|
)
|
2023-06-02 15:26:16 +07:00
|
|
|
|
|
|
|
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
|
|
target_link_options(${BOARD_TARGET} PUBLIC
|
|
|
|
"LINKER:--script=${LD_FILE_GNU}"
|
|
|
|
# nanolib
|
|
|
|
--specs=nosys.specs
|
|
|
|
--specs=nano.specs
|
|
|
|
# force linker to look for these symbols
|
|
|
|
-Wl,-uimage_vector_table
|
|
|
|
-Wl,-ug_boot_data
|
|
|
|
)
|
|
|
|
elseif (CMAKE_C_COMPILER_ID STREQUAL "IAR")
|
|
|
|
target_link_options(${BOARD_TARGET} PUBLIC
|
|
|
|
"LINKER:--config=${LD_FILE_IAR}"
|
|
|
|
)
|
|
|
|
endif ()
|
2023-04-20 14:09:38 +07:00
|
|
|
endif ()
|
2023-06-02 15:26:16 +07:00
|
|
|
endfunction()
|
2023-05-06 15:14:54 +07:00
|
|
|
|
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-06-02 15:26:16 +07:00
|
|
|
# Board target
|
|
|
|
add_board_target(board_${BOARD})
|
|
|
|
|
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
|
2023-06-16 11:26:38 +07:00
|
|
|
family_add_tinyusb(${TARGET} OPT_MCU_MIMXRT1XXX)
|
2023-05-05 19:15:19 +07:00
|
|
|
|
2023-05-06 15:14:54 +07:00
|
|
|
# Link dependencies
|
2023-06-02 15:26:16 +07:00
|
|
|
target_link_libraries(${TARGET} PUBLIC board_${BOARD} ${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})
|
2023-06-02 15:26:16 +07:00
|
|
|
#family_flash_nxplink(${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()
|