aboutsummaryrefslogtreecommitdiff
path: root/debug/targets/RISC-V/spike64-2-rtos.py
blob: 0b8739103aa7d82f91c30e2842d6b4eee1c3933a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import spike64  # pylint: disable=import-error

import targets
import testlib

class spike64_2_rtos(targets.Target):
    harts = [spike64.spike64_hart(misa=0x8000000000141129),
            spike64.spike64_hart(misa=0x8000000000141129)]
    openocd_config_path = "spike-rtos.cfg"
    timeout_sec = 180
    implements_custom_test = True
    support_hasel = False
    test_semihosting = False
    support_manual_hwbp = False # not supported with `-rtos riscv`
    support_memory_sampling = False # not supported with `-rtos riscv`
    support_unavailable_control = True

    def create(self):
        return testlib.Spike(self, abstract_rti=30, support_hasel=False,
                support_abstract_csr=False)