-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.defconfig
72 lines (48 loc) · 1.62 KB
/
Kconfig.defconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Kconfig - nRF91 PCA10090 board configuration
#
# Copyright (c) 2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
if BOARD_NRF9160_PCA10090 || BOARD_NRF9160_PCA10090NS
config BOARD
default "nrf9160_pca10090"
if ADC
config ADC_0
default y
endif # ADC
if I2C
config I2C_2
default y
endif # I2C
if PWM
config PWM_0
default y
endif # PWM
if SPI
config SPI_3
default y
endif # SPI
config GPIO
bool
default y
depends on SPI && SOC_FAMILY_NRF
# 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.
if BOARD_NRF9160_PCA10090 && TRUSTED_EXECUTION_SECURE
config FLASH_LOAD_SIZE
default $(dt_hex_val,DT_CODE_PARTITION_SIZE)
endif # BOARD_NRF9160_PCA10090 && TRUSTED_EXECUTION_SECURE
if BOARD_NRF9160_PCA10090NS
config FLASH_LOAD_OFFSET
default $(dt_hex_val,DT_CODE_PARTITION_OFFSET)
config FLASH_LOAD_SIZE
default $(dt_hex_val,DT_CODE_PARTITION_SIZE)
endif # BOARD_NRF9160_PCA10090NS
endif # BOARD_NRF9160_PCA10090 || BOARD_NRF9160_PCA10090NS