File tree 6 files changed +89
-24
lines changed
samples/bluetooth/fast_pair/locator_tag/configuration
6 files changed +89
-24
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2025 Nordic Semiconductor ASA
3
+ #
4
+ # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5
+ #
6
+
7
+ # TF-M profile has to be properly configured to be able to run
8
+ # the Bluetooth stack which uses PSA crypto API.
9
+ # The following configuration is a minimal set of options required.
10
+ CONFIG_TFM_PROFILE_TYPE_NOT_SET=y
11
+
12
+ CONFIG_TFM_PARTITION_PLATFORM=y
13
+ CONFIG_TFM_PARTITION_CRYPTO=y
14
+ CONFIG_TFM_PARTITION_INTERNAL_TRUSTED_STORAGE=y
15
+ CONFIG_TFM_PARTITION_PROTECTED_STORAGE=n
16
+ CONFIG_TFM_PARTITION_INITIAL_ATTESTATION=n
Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5
5
#
6
6
7
+ # TF-M profile has to be properly configured to be able to run
8
+ # the Bluetooth stack which uses PSA crypto API.
9
+ # The following configuration is a minimal set of options required.
10
+ CONFIG_TFM_PROFILE_TYPE_NOT_SET=y
11
+
12
+ CONFIG_TFM_PARTITION_PLATFORM=y
13
+ CONFIG_TFM_PARTITION_CRYPTO=y
14
+ CONFIG_TFM_PARTITION_INTERNAL_TRUSTED_STORAGE=y
15
+ CONFIG_TFM_PARTITION_PROTECTED_STORAGE=n
16
+ CONFIG_TFM_PARTITION_INITIAL_ATTESTATION=n
17
+
7
18
# Disable TF-M logging
8
19
CONFIG_TFM_LOG_LEVEL_SILENCE=y
Original file line number Diff line number Diff line change @@ -34,3 +34,14 @@ CONFIG_DULT_BATTERY_TYPE_RECHARGEABLE=y
34
34
# * thingy53/nrf5340/cpuapp(/ns)
35
35
CONFIG_BT_ADV_PROV_TX_POWER_CORRECTION_VAL=-12
36
36
CONFIG_BT_FAST_PAIR_FMDN_TX_POWER_CORRECTION_VAL=-12
37
+
38
+ # TF-M profile has to be properly configured to be able to run
39
+ # the Bluetooth stack which uses PSA crypto API.
40
+ # The following configuration is a minimal set of options required.
41
+ CONFIG_TFM_PROFILE_TYPE_NOT_SET=y
42
+
43
+ CONFIG_TFM_PARTITION_PLATFORM=y
44
+ CONFIG_TFM_PARTITION_CRYPTO=y
45
+ CONFIG_TFM_PARTITION_INTERNAL_TRUSTED_STORAGE=y
46
+ CONFIG_TFM_PARTITION_PROTECTED_STORAGE=n
47
+ CONFIG_TFM_PARTITION_INITIAL_ATTESTATION=n
Original file line number Diff line number Diff line change @@ -29,3 +29,14 @@ CONFIG_DULT_BATTERY_TYPE_RECHARGEABLE=y
29
29
# * thingy53/nrf5340/cpuapp(/ns)
30
30
CONFIG_BT_ADV_PROV_TX_POWER_CORRECTION_VAL=-12
31
31
CONFIG_BT_FAST_PAIR_FMDN_TX_POWER_CORRECTION_VAL=-12
32
+
33
+ # TF-M profile has to be properly configured to be able to run
34
+ # the Bluetooth stack which uses PSA crypto API.
35
+ # The following configuration is a minimal set of options required.
36
+ CONFIG_TFM_PROFILE_TYPE_NOT_SET=y
37
+
38
+ CONFIG_TFM_PARTITION_PLATFORM=y
39
+ CONFIG_TFM_PARTITION_CRYPTO=y
40
+ CONFIG_TFM_PARTITION_INTERNAL_TRUSTED_STORAGE=y
41
+ CONFIG_TFM_PARTITION_PROTECTED_STORAGE=n
42
+ CONFIG_TFM_PARTITION_INITIAL_ATTESTATION=n
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ mcuboot_primary:
10
10
- tfm
11
11
- app
12
12
region : flash_primary
13
- size : 0xef000
13
+ size : 0xe8000
14
14
span : *id001
15
15
mcuboot_pad :
16
16
address : 0xc000
@@ -19,38 +19,46 @@ mcuboot_pad:
19
19
tfm :
20
20
address : 0xc200
21
21
region : flash_primary
22
- size : 0xbe00
22
+ size : 0x17e00
23
23
tfm_secure :
24
24
address : 0xc000
25
- size : 0xc000
25
+ size : 0x18000
26
26
span : [mcuboot_pad, tfm]
27
27
tfm_nonsecure :
28
- address : 0x18000
29
- size : 0xe3000
28
+ address : 0x24000
29
+ size : 0xd0000
30
30
span : [app]
31
31
app :
32
- address : 0x18000
32
+ address : 0x24000
33
33
region : flash_primary
34
- size : 0xe3000
34
+ size : 0xd0000
35
35
mcuboot_primary_app :
36
36
address : 0xc200
37
37
orig_span : &id002
38
38
- tfm
39
39
- app
40
40
region : flash_primary
41
- size : 0xeee00
41
+ size : 0xe7e00
42
42
span : *id002
43
43
44
+ nonsecure_storage :
45
+ address : 0xf4000
46
+ size : 0x8000
47
+ span : [bt_fast_pair, settings_storage]
44
48
bt_fast_pair :
45
- address : 0xfb000
49
+ address : 0xf4000
46
50
region : flash_primary
47
51
size : 0x1000
52
+ settings_storage :
53
+ address : 0xf5000
54
+ region : flash_primary
55
+ size : 0x7000
48
56
49
- nonsecure_storage :
57
+ tfm_storage :
50
58
address : 0xfc000
51
59
size : 0x4000
52
- span : [settings_storage ]
53
- settings_storage :
60
+ span : [tfm_its ]
61
+ tfm_its :
54
62
address : 0xfc000
55
63
region : flash_primary
56
64
size : 0x4000
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ mcuboot_primary:
10
10
- tfm
11
11
- app
12
12
region : flash_primary
13
- size : 0xef000
13
+ size : 0xe8000
14
14
span : *id001
15
15
mcuboot_pad :
16
16
address : 0xc000
@@ -19,38 +19,46 @@ mcuboot_pad:
19
19
tfm :
20
20
address : 0xc200
21
21
region : flash_primary
22
- size : 0xbe00
22
+ size : 0x17e00
23
23
tfm_secure :
24
24
address : 0xc000
25
- size : 0xc000
25
+ size : 0x18000
26
26
span : [mcuboot_pad, tfm]
27
27
tfm_nonsecure :
28
- address : 0x18000
29
- size : 0xe3000
28
+ address : 0x24000
29
+ size : 0xd0000
30
30
span : [app]
31
31
app :
32
- address : 0x18000
32
+ address : 0x24000
33
33
region : flash_primary
34
- size : 0xe3000
34
+ size : 0xd0000
35
35
mcuboot_primary_app :
36
36
address : 0xc200
37
37
orig_span : &id002
38
38
- tfm
39
39
- app
40
40
region : flash_primary
41
- size : 0xeee00
41
+ size : 0xe7e00
42
42
span : *id002
43
43
44
+ nonsecure_storage :
45
+ address : 0xf4000
46
+ size : 0x8000
47
+ span : [bt_fast_pair, settings_storage]
44
48
bt_fast_pair :
45
- address : 0xfb000
49
+ address : 0xf4000
46
50
region : flash_primary
47
51
size : 0x1000
52
+ settings_storage :
53
+ address : 0xf5000
54
+ region : flash_primary
55
+ size : 0x7000
48
56
49
- nonsecure_storage :
57
+ tfm_storage :
50
58
address : 0xfc000
51
59
size : 0x4000
52
- span : [settings_storage ]
53
- settings_storage :
60
+ span : [tfm_its ]
61
+ tfm_its :
54
62
address : 0xfc000
55
63
region : flash_primary
56
64
size : 0x4000
You can’t perform that action at this time.
0 commit comments