2020-03-26 19:24:46 +08:00
|
|
|
# nRF9160 DK NRF9160 board configuration
|
2019-11-01 20:45:29 +08:00
|
|
|
|
2020-03-26 19:24:46 +08:00
|
|
|
# Copyright (c) 2018-2020 Nordic Semiconductor ASA
|
2019-01-17 17:26:08 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-03-26 19:24:46 +08:00
|
|
|
if BOARD_NRF9160DK_NRF9160 || BOARD_NRF9160DK_NRF9160NS
|
2019-01-17 17:26:08 +08:00
|
|
|
|
|
|
|
config BOARD
|
2020-03-26 19:24:46 +08:00
|
|
|
default "nrf9160dk_nrf9160"
|
2019-01-17 17:26:08 +08:00
|
|
|
|
2019-02-07 23:41:52 +08:00
|
|
|
# For the secure version of the board the firmware is linked at the beginning
|
2019-02-22 19:24:27 +08:00
|
|
|
# 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
|
2019-02-07 23:41:52 +08:00
|
|
|
# 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.
|
|
|
|
|
2019-08-28 22:29:26 +08:00
|
|
|
# Workaround for not being able to have commas in macro arguments
|
|
|
|
DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition
|
|
|
|
|
2019-02-22 19:24:27 +08:00
|
|
|
config FLASH_LOAD_SIZE
|
2019-10-24 04:15:59 +08:00
|
|
|
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
2020-03-26 19:24:46 +08:00
|
|
|
depends on BOARD_NRF9160DK_NRF9160 && TRUSTED_EXECUTION_SECURE
|
2019-02-22 19:24:27 +08:00
|
|
|
|
2020-03-26 19:24:46 +08:00
|
|
|
if BOARD_NRF9160DK_NRF9160NS
|
2019-02-07 23:41:52 +08:00
|
|
|
|
|
|
|
config FLASH_LOAD_OFFSET
|
2019-10-24 04:15:59 +08:00
|
|
|
default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
2019-02-07 23:41:52 +08:00
|
|
|
|
|
|
|
config FLASH_LOAD_SIZE
|
2019-10-24 04:15:59 +08:00
|
|
|
default $(dt_chosen_reg_size_hex,$(DT_CHOSEN_Z_CODE_PARTITION))
|
2019-02-07 23:41:52 +08:00
|
|
|
|
2020-03-26 19:24:46 +08:00
|
|
|
endif # BOARD_NRF9160DK_NRF9160NS
|
2019-02-07 23:41:52 +08:00
|
|
|
|
2021-02-12 03:58:09 +08:00
|
|
|
config BT_HCI_VS
|
|
|
|
default y if BT
|
|
|
|
|
2020-03-26 19:24:46 +08:00
|
|
|
endif # BOARD_NRF9160DK_NRF9160 || BOARD_NRF9160DK_NRF9160NS
|