63 lines
2.0 KiB
Plaintext
63 lines
2.0 KiB
Plaintext
# Copyright 2019,2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_LPCXPRESSO55S69
|
|
|
|
if FXOS8700
|
|
|
|
choice FXOS8700_MODE
|
|
default FXOS8700_MODE_ACCEL
|
|
endchoice
|
|
|
|
config FXOS8700_DRDY_INT1
|
|
default y
|
|
depends on FXOS8700_TRIGGER
|
|
|
|
endif # FXOS8700
|
|
|
|
# For the secure version of the board the firmware is linked at the beginning
|
|
# of the flash, or into the code-partition defined in DT if it is intended to
|
|
# be loaded by MCUboot. If the secure firmware is to be combined with a non-
|
|
# secure image (TRUSTED_EXECUTION_SECURE=y), the secure FW image shall always
|
|
# be restricted to the size of its code partition.
|
|
# For the non-secure version of the board, the firmware
|
|
# must be linked into the code-partition (non-secure) defined in DT, regardless.
|
|
# Apply this configuration below by setting the Kconfig symbols used by
|
|
# the linker according to the information extracted from DT partitions.
|
|
|
|
# Workaround for not being able to have commas in macro arguments
|
|
DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition
|
|
|
|
config FLASH_LOAD_SIZE
|
|
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
|
depends on BOARD_LPCXPRESSO55S69_LPC55S69_CPU0 && TRUSTED_EXECUTION_SECURE
|
|
|
|
if TRUSTED_EXECUTION_NONSECURE || BOARD_LPCXPRESSO55S69_LPC55S69_CPU1
|
|
|
|
config FLASH_LOAD_OFFSET
|
|
default 0x50000 if (!TFM_BL2 && BUILD_WITH_TFM)
|
|
default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
|
|
|
config FLASH_LOAD_SIZE
|
|
default 0x40000 if (!TFM_BL2 && BUILD_WITH_TFM)
|
|
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
|
|
|
config PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY
|
|
default y if MBEDTLS_PSA_CRYPTO_CLIENT && MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
|
|
|
|
endif # TRUSTED_EXECUTION_NONSECURE || BOARD_LPCXPRESSO55S69_LPC55S69_CPU1
|
|
|
|
choice TFM_PROFILE_TYPE
|
|
depends on BUILD_WITH_TFM
|
|
default TFM_PROFILE_TYPE_MEDIUM
|
|
endchoice
|
|
|
|
if BOOTLOADER_MCUBOOT
|
|
choice MCUBOOT_BOOTLOADER_MODE
|
|
# Board only supports MCUBoot via "upgrade only" method:
|
|
default MCUBOOT_BOOTLOADER_MODE_OVERWRITE_ONLY
|
|
endchoice
|
|
endif #BOOTLOADER_MCUBOOT
|
|
|
|
endif # BOARD_LPCXPRESSO55S69
|