|  | // Copyright lowRISC contributors. | 
|  | // Licensed under the Apache License, Version 2.0, see LICENSE for details. | 
|  | // SPDX-License-Identifier: Apache-2.0 | 
|  | { | 
|  | // Name of the sim cfg - typically same as the name of the DUT. | 
|  | name: ${name} | 
|  |  | 
|  | // Top level dut name (sv module). | 
|  | dut: ${name} | 
|  |  | 
|  | // Top level testbench name (sv module). | 
|  | tb: tb | 
|  |  | 
|  | // Simulator used to sign off this block | 
|  | tool: vcs | 
|  |  | 
|  | // Fusesoc core file used for building the file list. | 
|  | fusesoc_core: ${vendor}:dv:${name}_sim:0.1 | 
|  |  | 
|  | // Testplan hjson file. | 
|  | testplan: "{proj_root}/hw/ip/${name}/data/${name}_testplan.hjson" | 
|  |  | 
|  | % if has_ral: | 
|  | // RAL spec - used to generate the RAL model. | 
|  | ral_spec: "{proj_root}/hw/ip/${name}/data/${name}.hjson" | 
|  | % endif | 
|  |  | 
|  | // Import additional common sim cfg files. | 
|  | // TODO: remove imported cfgs that do not apply. | 
|  | % if is_cip: | 
|  | import_cfgs: [// Project wide common sim cfg file | 
|  | "{proj_root}/hw/dv/tools/dvsim/common_sim_cfg.hjson", | 
|  | // Common CIP test lists | 
|  | % if has_ral: | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/csr_tests.hjson", | 
|  | % endif | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/mem_tests.hjson", | 
|  | % if has_interrupts: | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/intr_test.hjson", | 
|  | % endif | 
|  | % if has_alerts: | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/alert_test.hjson", | 
|  | % endif | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/tl_access_tests.hjson", | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/stress_tests.hjson"] | 
|  | % else: | 
|  | import_cfgs: [// Project wide common sim cfg file | 
|  | "{proj_root}/hw/dv/tools/dvsim/common_sim_cfg.hjson", | 
|  | % if has_ral: | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/csr_tests.hjson", | 
|  | "{proj_root}/hw/dv/tools/dvsim/tests/mem_tests.hjson"] | 
|  | % endif | 
|  | % endif | 
|  |  | 
|  | // Add additional tops for simulation. | 
|  | sim_tops: ["${name}_bind"] | 
|  |  | 
|  | // Default iterations for all tests - each test entry can override this. | 
|  | reseed: 50 | 
|  |  | 
|  | // Default UVM test and seq class name. | 
|  | uvm_test: ${name}_base_test | 
|  | uvm_test_seq: ${name}_base_vseq | 
|  |  | 
|  | // List of test specifications. | 
|  | tests: [ | 
|  | { | 
|  | name: ${name}_smoke | 
|  | uvm_test_seq: ${name}_smoke_vseq | 
|  | } | 
|  |  | 
|  | // TODO: add more tests here | 
|  | ] | 
|  |  | 
|  | // List of regressions. | 
|  | regressions: [ | 
|  | { | 
|  | name: smoke | 
|  | tests: ["${name}_smoke"] | 
|  | } | 
|  | ] | 
|  | } |