#
# Copyright 2022-2023 NXP
#
# SPDX-License-Identifier: Apache-2.0
#

if(CONFIG_BOARD_MIMXRT595_EVK_MIMXRT595S_CM33)
  zephyr_library()
  zephyr_library_sources(board.c)
  zephyr_library_include_directories(.)
endif()

if(CONFIG_NXP_IMXRT_BOOT_HEADER)
  if(NOT DEFINED CONFIG_BOARD_MIMXRT595_EVK_MIMXRT595S_CM33)
    message(WARNING "It appears you are using the board definition for "
     "the MIMXRT595-EVK, but targeting a custom board. You may need to "
     "update your flash configuration block data")
  endif()
  # This flash configuration block may need modification if another
  # flash chip is used on your custom board. See NXP AN13304 for more
  # information.
  zephyr_compile_definitions(BOOT_HEADER_ENABLE=1)
  zephyr_compile_definitions(BOARD_FLASH_SIZE=CONFIG_FLASH_SIZE*1024)
  zephyr_library_sources(flash_config/flash_config.c)
  zephyr_library_include_directories(flash_config)
endif()

# Add custom linker section to relocate framebuffers to PSRAM
zephyr_linker_sources_ifdef(CONFIG_LV_Z_VDB_CUSTOM_SECTION
  SECTIONS dc_ram.ld)
