blob: d9260ca0f5741e6e7dbebea0ef63aa513b4da488 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# All tests added to this dictionary will result in build targets that have
# names starting `sw/device/tests/<test_name>`. They will not contain the
# subdirectory name, because the build targets are really declared at the bottom
# of this file, rather than in the subdirectories.
sw_tests = {
# 'test_name': {
# 'library': test_lib,
# 'dv_frames': true/false, # (can be omitted, defaults to `false`)
# },
}
# All tests added to this dictionary will result in build targets that have
# names starting `sw/device/tests/<test_name>`. They will not contain the
# subdirectory name, because the build targets are really declared at the bottom
# of this file, rather than in the subdirectories.
#
# These tests will link against a ROM_EXT slot A image.
sw_rom_ext_tests = {
# 'test_name': {
# 'library': test_lib,
# },
}
###############################################################################
# Smoke Tests
###############################################################################
rv_plic_smoketest_lib = declare_dependency(
link_with: static_library(
'rv_plic_smoketest_lib',
sources: ['rv_plic_smoketest.c'],
dependencies: [
sw_lib_dif_uart,
sw_lib_dif_rv_plic,
sw_lib_irq,
sw_lib_mmio,
sw_lib_runtime_log,
sw_lib_runtime_hart,
sw_lib_testing_test_status,
],
),
)
sw_tests += {
'rv_plic_smoketest': {
'library': rv_plic_smoketest_lib,
}
}
uart_smoketest_lib = declare_dependency(
link_with: static_library(
'uart_smoketest_lib',
sources: ['uart_smoketest.c'],
dependencies: [
sw_lib_dif_uart,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'uart_smoketest': {
'library': uart_smoketest_lib,
}
}
sw_rom_ext_tests += {
'uart_smoketest': {
'library': uart_smoketest_lib,
}
}
rv_timer_smoketest_lib = declare_dependency(
link_with: static_library(
'rv_timer_smoketest_lib',
sources: ['rv_timer_smoketest.c'],
dependencies: [
sw_lib_dif_rv_timer,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
sw_lib_irq,
],
),
)
sw_tests += {
'rv_timer_smoketest': {
'library': rv_timer_smoketest_lib,
}
}
hmac_smoketest_lib = declare_dependency(
link_with: static_library(
'hmac_smoketest_lib',
sources: ['hmac_smoketest.c'],
dependencies: [
sw_lib_dif_hmac,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'hmac_smoketest': {
'library': hmac_smoketest_lib,
}
}
kmac_smoketest_lib = declare_dependency(
link_with: static_library(
'kmac_smoketest_lib',
sources: ['kmac_smoketest.c'],
dependencies: [
sw_lib_dif_kmac,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'kmac_smoketest': {
'library': kmac_smoketest_lib,
}
}
rstmgr_smoketest_lib = declare_dependency(
link_with: static_library(
'rstmgr_smoketest_lib',
sources: ['rstmgr_smoketest.c'],
dependencies: [
sw_lib_dif_rstmgr,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'rstmgr_smoketest': {
'library': rstmgr_smoketest_lib,
}
}
otbn_smoketest_lib = declare_dependency(
link_with: static_library(
'otbn_smoketest_lib',
sources: ['otbn_smoketest.c'],
dependencies: [
sw_lib_testing_entropy_testutils,
sw_lib_dif_otbn,
sw_lib_runtime_hart,
sw_lib_runtime_otbn,
top_earlgrey,
sw_otbn['barrett384']['rv32embed_dependency'],
sw_otbn['err_test']['rv32embed_dependency'],
],
),
)
sw_tests += {
'otbn_smoketest': {
'library': otbn_smoketest_lib,
}
}
otp_ctrl_smoketest_lib = declare_dependency(
link_with: static_library(
'otp_ctrl_smoketest_lib',
sources: ['otp_ctrl_smoketest.c'],
dependencies: [
sw_lib_dif_otp_ctrl,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'otp_ctrl_smoketest': {
'library': otp_ctrl_smoketest_lib,
}
}
gpio_smoketest_lib = declare_dependency(
link_with: static_library(
'gpio_smoketest_lib',
sources: ['gpio_smoketest.c'],
dependencies: [
sw_lib_dif_gpio,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'gpio_smoketest': {
'library': gpio_smoketest_lib,
}
}
aes_smoketest_lib = declare_dependency(
link_with: static_library(
'aes_smoketest_lib',
sources: ['aes_smoketest.c'],
dependencies: [
sw_lib_dif_aes,
sw_lib_mmio,
sw_lib_runtime_log,
sw_lib_testing_entropy_testutils,
sw_lib_testing_test_status,
],
),
)
sw_tests += {
'aes_smoketest': {
'library': aes_smoketest_lib,
}
}
clkmgr_smoketest_lib = declare_dependency(
link_with: static_library(
'clkmgr_smoketest_lib',
sources: ['clkmgr_smoketest.c'],
dependencies: [
sw_lib_dif_clkmgr,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'clkmgr_smoketest': {
'library': clkmgr_smoketest_lib,
}
}
csrng_smoketest_lib = declare_dependency(
link_with: static_library(
'csrng_smoketest_lib',
sources: ['csrng_smoketest.c'],
dependencies: [
sw_lib_dif_csrng,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'csrng_smoketest': {
'library': csrng_smoketest_lib,
}
}
entropy_src_smoketest_lib = declare_dependency(
link_with: static_library(
'entropy_src_smoketest_lib',
sources: ['entropy_src_smoketest.c'],
dependencies: [
sw_lib_dif_entropy_src,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'entropy_src_smoketest': {
'library': entropy_src_smoketest_lib,
}
}
aon_timer_smoketest_lib = declare_dependency(
link_with: static_library(
'aon_timer_smoketest_lib',
sources: ['aon_timer_smoketest.c'],
dependencies: [
sw_lib_dif_aon_timer,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'aon_timer_smoketest': {
'library': aon_timer_smoketest_lib,
}
}
pwrmgr_smoketest_lib = declare_dependency(
link_with: static_library(
'pwrmgr_smoketest_lib',
sources: ['pwrmgr_smoketest.c'],
dependencies: [
sw_lib_dif_pwrmgr,
sw_lib_dif_rstmgr,
sw_lib_dif_aon_timer,
sw_lib_mmio,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'pwrmgr_smoketest': {
'library': pwrmgr_smoketest_lib,
}
}
pmp_smoketest_napot_lib = declare_dependency(
link_with: static_library(
'pmp_smoketest_napot_lib',
sources: ['pmp_smoketest_napot.c'],
dependencies: [
sw_lib_irq,
sw_lib_runtime_log,
sw_lib_runtime_hart,
sw_lib_runtime_pmp,
sw_lib_testing_test_status,
],
),
)
sw_tests += {
'pmp_smoketest_napot': {
'library': pmp_smoketest_napot_lib,
}
}
pmp_smoketest_tor_lib = declare_dependency(
link_with: static_library(
'pmp_smoketest_tor_lib',
sources: ['pmp_smoketest_tor.c'],
dependencies: [
sw_lib_irq,
sw_lib_runtime_log,
sw_lib_runtime_hart,
sw_lib_runtime_pmp,
sw_lib_testing_test_status,
],
),
)
sw_tests += {
'pmp_smoketest_tor': {
'library': pmp_smoketest_tor_lib,
}
}
###############################################################################
# IP Integration Tests
###############################################################################
# Flash Controller Tests
flash_ctrl_test_lib = declare_dependency(
link_with: static_library(
'flash_ctrl_test_lib',
sources: ['flash_ctrl_test.c'],
dependencies: [
sw_lib_mem,
sw_lib_mmio,
sw_lib_flash_ctrl,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'flash_ctrl_test': {
'library': flash_ctrl_test_lib,
}
}
# KMAC Tests
kmac_mode_kmac_test_lib = declare_dependency(
link_with: static_library(
'kmac_mode_kmac_test_lib',
sources: ['kmac_mode_kmac_test.c'],
dependencies: [
sw_lib_dif_kmac,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'kmac_mode_kmac_test': {
'library': kmac_mode_kmac_test_lib,
}
}
kmac_mode_cshake_test_lib = declare_dependency(
link_with: static_library(
'kmac_mode_cshake_test_lib',
sources: ['kmac_mode_cshake_test.c'],
dependencies: [
sw_lib_dif_kmac,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'kmac_mode_cshake_test': {
'library': kmac_mode_cshake_test_lib,
}
}
# Lifecycle Controller Tests
lc_ctrl_otp_hw_cfg_test_lib = declare_dependency(
link_with: static_library(
'lc_ctrl_otp_hw_cfg_test_lib',
sources: [
'lc_ctrl_otp_hw_cfg_test.c',
],
dependencies: [
sw_lib_dif_lc_ctrl,
sw_lib_dif_otp_ctrl,
sw_lib_runtime_log,
sw_lib_mmio,
sw_lib_runtime_hart,
],
),
)
sw_tests += {
'lc_ctrl_otp_hw_cfg_test': {
'library': lc_ctrl_otp_hw_cfg_test_lib,
}
}
# OTBN Tests
otbn_rsa_test_lib = declare_dependency(
link_with: static_library(
'otbn_rsa_test_lib',
sources: ['otbn_rsa_test.c'],
dependencies: [
sw_lib_testing_entropy_testutils,
sw_lib_runtime_otbn,
sw_lib_runtime_log,
sw_lib_runtime_ibex,
top_earlgrey,
sw_otbn['rsa']['rv32embed_dependency'],
],
),
)
sw_tests += {
'otbn_rsa_test': {
'library': otbn_rsa_test_lib
}
}
otbn_ecdsa_p256_test_lib = declare_dependency(
link_with: static_library(
'otbn_ecdsa_p256_test_lib',
sources: ['otbn_ecdsa_p256_test.c'],
dependencies: [
sw_lib_testing_entropy_testutils,
sw_lib_runtime_otbn,
sw_lib_runtime_log,
sw_lib_runtime_ibex,
top_earlgrey,
sw_otbn['p256_ecdsa']['rv32embed_dependency'],
],
),
)
sw_tests += {
'otbn_ecdsa_p256_test': {
'library': otbn_ecdsa_p256_test_lib
}
}
otbn_randomness_test_lib = declare_dependency(
link_with: static_library(
'otbn_randomness_test_lib',
sources: ['otbn_randomness_test.c'],
dependencies: [
sw_lib_testing_entropy_testutils,
sw_lib_runtime_otbn,
sw_lib_runtime_log,
sw_lib_runtime_ibex,
top_earlgrey,
sw_otbn['randomness']['rv32embed_dependency'],
],
),
)
sw_tests += {
'otbn_randomness_test': {
'library': otbn_randomness_test_lib
}
}
# USB Device Tests
usbdev_test_lib = declare_dependency(
link_with: static_library(
'usbdev_test_lib',
sources: ['usbdev_test.c'],
dependencies: [
sw_lib_usb,
sw_lib_runtime_log,
],
),
)
sw_tests += {
'usbdev_test': {
'library': usbdev_test_lib,
}
}
###############################################################################
# DV Simulation (target-specific) Tests
###############################################################################
subdir('sim_dv')
###############################################################################
# Other Tests
###############################################################################
coverage_test_lib = declare_dependency(
link_with: static_library(
'coverage_test_lib',
sources: ['coverage_test.c'],
dependencies: [
collect_coverage,
],
),
)
sw_tests += {
'coverage_test': {
'library': coverage_test_lib,
}
}
###############################################################################
# Build Targets
###############################################################################
# (unsigned) test binaries loaded with ROM from sw/device/boot_rom/
foreach sw_test_name, sw_test_info : sw_tests
foreach device_name, device_lib : sw_lib_arch_core_devices
sw_test_elf = executable(
sw_test_name + '_' + device_name,
name_suffix: 'elf',
dependencies: [
riscv_crt,
device_lib,
sw_test_info['library'],
sw_lib_irq_handlers,
sw_lib_testing_test_main,
],
)
target_name = sw_test_name + '_@0@_' + device_name
sw_test_dis = custom_target(
target_name.format('dis'),
input: sw_test_elf,
kwargs: elf_to_dis_custom_target_args,
)
sw_test_bin = custom_target(
target_name.format('bin'),
input: sw_test_elf,
kwargs: elf_to_bin_custom_target_args,
)
sw_test_vmem32 = custom_target(
target_name.format('vmem32'),
input: sw_test_bin,
kwargs: bin_to_vmem32_custom_target_args,
)
sw_test_vmem64 = custom_target(
target_name.format('vmem64'),
input: sw_test_bin,
kwargs: bin_to_vmem64_custom_target_args,
)
sw_test_sim_dv_frames = []
if device_name == 'sim_dv' and \
sw_test_info.has_key('dv_frames') and sw_test_info['dv_frames']
sw_test_sim_dv_frames_bin = custom_target(
sw_test_name + '_sim_dv_frames_bin',
command: [
spiflash_bin,
'--input=@INPUT@',
'--dump-frames=@OUTPUT@',
],
input: sw_test_bin,
output: '@BASENAME@.frames.bin',
)
sw_test_sim_dv_frames_vmem = custom_target(
sw_test_name + '_sim_dv_frames_vmem',
command: [
prog_srec_cat,
'@INPUT@',
'--binary',
'--offset', '0x0',
'--byte-swap', '4',
'--fill', '0xff',
'-within', '@INPUT@',
'-binary',
'-range-pad', '4',
'--output', '@OUTPUT@',
'--vmem',
],
input: sw_test_sim_dv_frames_bin,
output: '@BASENAME@.vmem',
)
sw_test_sim_dv_frames = [
sw_test_sim_dv_frames_bin,
sw_test_sim_dv_frames_vmem,
]
endif
sw_test_sim_dv_logs = []
if device_name == 'sim_dv'
sw_test_sim_dv_logs = custom_target(
sw_test_name + '_sim_dv_logs',
command: extract_sw_logs_sim_dv_command,
depend_files: [extract_sw_logs_sim_dv_depend_files,],
input: sw_test_elf,
output: extract_sw_logs_sim_dv_outputs,
)
endif
custom_target(
target_name.format('export'),
command: export_target_command,
depend_files: [export_target_depend_files,],
input: [
sw_test_elf,
sw_test_dis,
sw_test_bin,
sw_test_vmem32,
sw_test_vmem64,
sw_test_sim_dv_frames,
sw_test_sim_dv_logs,
],
output: target_name.format('export'),
build_always_stale: true,
build_by_default: true,
)
endforeach
endforeach
# Signing keys for ROM_EXT images.
signing_keys = {
'fpga_key_0': {
'path': meson.source_root() / 'sw/device/silicon_creator/keys/fpga_key_0.private.der',
},
'fpga_key_1': {
'path': meson.source_root() / 'sw/device/silicon_creator/keys/fpga_key_1.private.der',
},
}
# (signed) test binaries loaded with ROM from sw/device/silicon_creator/
foreach sw_test_name, sw_test_info : sw_rom_ext_tests
foreach device_name, device_lib : sw_lib_arch_core_devices
sw_test_elf = executable(
'_'.join(['rom_ext', sw_test_name, device_name]),
name_suffix: 'elf',
dependencies: [
# Only use ROM_EXT slot A for now.
rom_ext_slot_libs['rom_ext_slot_a'],
device_lib,
sw_test_info['library'],
sw_lib_irq_handlers,
sw_lib_testing_test_main,
],
)
target_name = '_'.join(['rom_ext', sw_test_name, '@0@', device_name])
sw_test_dis = custom_target(
target_name.format('dis'),
input: sw_test_elf,
kwargs: elf_to_dis_custom_target_args,
)
sw_test_bin = custom_target(
target_name.format('bin'),
input: sw_test_elf,
kwargs: elf_to_bin_custom_target_args,
)
targets_to_export = [
sw_test_elf,
sw_test_dis,
sw_test_bin,
]
foreach key_name, key_info : signing_keys
signed_target_name = '_'.join(['rom_ext', sw_test_name, key_name, 'signed', '@0@', device_name])
sw_test_signed_bin = custom_target(
signed_target_name.format('bin'),
input: sw_test_bin,
output: '@BASENAME@.@0@.signed.bin'.format(key_name),
command: [
rom_ext_signer_export.full_path(),
'@INPUT@',
key_info['path'],
sw_test_elf.full_path(),
'@OUTPUT@',
],
depends: rom_ext_signer_export,
build_by_default: true,
)
sw_test_signed_vmem32 = custom_target(
signed_target_name.format('vmem32'),
input: sw_test_signed_bin,
kwargs: bin_to_vmem32_custom_target_args,
)
sw_test_signed_vmem64 = custom_target(
signed_target_name.format('vmem64'),
input: sw_test_signed_bin,
kwargs: bin_to_vmem64_custom_target_args,
)
targets_to_export += [
sw_test_signed_bin,
sw_test_signed_vmem32,
sw_test_signed_vmem64,
]
endforeach
custom_target(
target_name.format('export'),
command: export_target_command,
depend_files: [export_target_depend_files,],
input: targets_to_export,
output: target_name.format('export'),
build_always_stale: true,
build_by_default: true,
)
endforeach
endforeach
# Specific custom configuration for `crt_test`
foreach device_name, device_lib : sw_lib_arch_core_devices
crt_test_elf = executable(
'crt_test_' + device_name,
name_suffix: 'elf',
sources: ['crt_test.c'],
dependencies: [
riscv_crt,
device_lib,
sw_lib_irq_handlers,
sw_lib_testing_test_status,
sw_lib_runtime_print,
sw_lib_runtime_log,
sw_lib_dif_uart,
# Explicitly do not pull in the test main; we need to run right after
# the CRT is done executing.
# sw_lib_testing_test_main,
],
)
target_name = 'crt_test_@0@_' + device_name
crt_test_dis = custom_target(
target_name.format('dis'),
input: crt_test_elf,
kwargs: elf_to_dis_custom_target_args,
)
crt_test_bin = custom_target(
target_name.format('bin'),
input: crt_test_elf,
kwargs: elf_to_bin_custom_target_args,
)
crt_test_vmem32 = custom_target(
target_name.format('vmem32'),
input: crt_test_bin,
kwargs: bin_to_vmem32_custom_target_args,
)
crt_test_vmem64 = custom_target(
target_name.format('vmem64'),
input: crt_test_bin,
kwargs: bin_to_vmem64_custom_target_args,
)
custom_target(
target_name.format('export'),
command: export_target_command,
depend_files: [export_target_depend_files,],
input: [
crt_test_elf,
crt_test_dis,
crt_test_bin,
crt_test_vmem32,
crt_test_vmem64,
],
output: target_name.format('export'),
build_always_stale: true,
build_by_default: true,
)
endforeach
# OpenTitan (FreeRTOS) Test Framework
foreach device_name, device_lib : sw_lib_arch_core_devices
ottf_elf = executable(
'ottf_' + device_name,
name_suffix: 'elf',
dependencies: [
riscv_crt,
device_lib,
sw_lib_ottf,
sw_lib_irq_handlers,
],
)
target_name = 'ottf_@0@_' + device_name
ottf_dis = custom_target(
target_name.format('dis'),
input: ottf_elf,
kwargs: elf_to_dis_custom_target_args,
)
ottf_bin = custom_target(
target_name.format('bin'),
input: ottf_elf,
kwargs: elf_to_bin_custom_target_args,
)
ottf_vmem32 = custom_target(
target_name.format('vmem32'),
input: ottf_bin,
kwargs: bin_to_vmem32_custom_target_args,
)
ottf_vmem64 = custom_target(
target_name.format('vmem64'),
input: ottf_bin,
kwargs: bin_to_vmem64_custom_target_args,
)
custom_target(
target_name.format('export'),
command: export_target_command,
depend_files: [export_target_depend_files,],
input: [
ottf_elf,
ottf_dis,
ottf_bin,
ottf_vmem32,
ottf_vmem64,
],
output: target_name.format('export'),
build_always_stale: true,
build_by_default: true,
)
endforeach