File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 40
40
"tgt_dev_apis_tfm_musca_b1" ,
41
41
"tgt_ff_tfm_musca_b1" ,
42
42
],
43
+ "ARM_MUSCA_S1" : [
44
+ "armv8m_ml" ,
45
+ "tgt_dev_apis_tfm_musca_s1" ,
46
+ ],
43
47
}
44
48
45
49
@@ -304,6 +308,14 @@ def _main():
304
308
parser = _get_parser ()
305
309
args = parser .parse_args ()
306
310
311
+ # Issue : https://github.com/ARMmbed/mbed-os-tf-m-regression-tests/issues/49
312
+ # There is no support for this target to run Firmware Framework tests
313
+ if args .suite == "IPC" and args .mcu == "ARM_MUSCA_S1" :
314
+ logging .info (
315
+ "%s config is not supported for %s target" % (args .suite , args .mcu )
316
+ )
317
+ return
318
+
307
319
if not isdir (TF_M_BUILD_DIR ):
308
320
os .mkdir (TF_M_BUILD_DIR )
309
321
Original file line number Diff line number Diff line change @@ -630,6 +630,14 @@ def _main():
630
630
parser = _get_parser ()
631
631
args = parser .parse_args ()
632
632
633
+ # Issue : https://github.com/ARMmbed/mbed-os-tf-m-regression-tests/issues/49
634
+ # There is no support for this target to run Firmware Framework tests
635
+ if args .suite == "IPC" and args .mcu == "ARM_MUSCA_S1" :
636
+ logging .info (
637
+ "%s config is not supported for %s target" % (args .suite , args .mcu )
638
+ )
639
+ return
640
+
633
641
if args .list :
634
642
logging .info (
635
643
"Supported TF-M regression targets are: {}" .format (
Original file line number Diff line number Diff line change 16
16
{
17
17
# Files/folders to be copied to mbed-os folder
18
18
" mbed-os " : {
19
+ " ARM_MUSCA_S1 " : [
20
+ {
21
+ " src " : " image_macros_preprocessed_ns.c" ,
22
+ " dst " : " targets/TARGET_ARM_SSG/TARGET_MUSCA_S1/partition/image_macros_preprocessed_ns.c"
23
+ },
24
+ {
25
+ " src " : " image_macros_preprocessed_s.c" ,
26
+ " dst " : " targets/TARGET_ARM_SSG/TARGET_MUSCA_S1/partition/image_macros_preprocessed_s.c"
27
+ }
28
+ ],
19
29
" ARM_MUSCA_B1 " : [
20
30
{
21
31
" src " : " image_macros_preprocessed_ns.c" ,
126
136
},
127
137
# Files/folders to be copied to tf-m-regression folder
128
138
" tf-m-regression " : {
139
+ " ARM_MUSCA_S1 " : [
140
+ {
141
+ " src " : " platform/ext/target/musca_s1/Device/Include/platform_base_address.h" ,
142
+ " dst " : " tfm/targets/TARGET_ARM_SSG/TARGET_MUSCA_S1/device/platform_base_address.h"
143
+ },
144
+ {
145
+ " src " : " platform/ext/target/musca_s1/tfm_peripherals_def.h" ,
146
+ " dst " : " tfm/targets/TARGET_ARM_SSG/TARGET_MUSCA_S1/device/tfm_peripherals_def.h"
147
+ }
148
+ ],
129
149
" ARM_MUSCA_B1 " : [
130
150
{
131
151
" src " : " platform/ext/target/musca_b1/Device/Include/platform_base_address.h" ,
You can’t perform that action at this time.
0 commit comments