Currently this code related to how to configure the flash size and address when using flexspi to XIP is copy pasted in all sort of places and ways all over the tree, let's clean this up and have single point of control over this configuration. Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
25 lines
494 B
Text
25 lines
494 B
Text
# MIMXRT685-EVK board
|
|
|
|
# Copyright 2020, 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_MIMXRT685_EVK_MIMXRT685S_CM33
|
|
|
|
config NXP_IMXRT_BOOT_HEADER
|
|
default y if !BOOTLOADER_MCUBOOT
|
|
|
|
config XTAL_SYS_CLK_HZ
|
|
default 24000000
|
|
|
|
config SYSOSC_SETTLING_US
|
|
default 260
|
|
|
|
choice FLASH_MCUX_FLEXSPI_MX25UM51345G_OPI_MODE
|
|
default FLASH_MCUX_FLEXSPI_MX25UM51345G_OPI_STR
|
|
endchoice
|
|
|
|
config FXOS8700_DRDY_INT1
|
|
default y
|
|
depends on FXOS8700_TRIGGER
|
|
|
|
endif # BOARD_MIMXRT685_EVK_MIMXRT685S_CM33
|