From 87a42e555bf952047e287f4c7810cd538595d5af Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Wed, 15 Nov 2023 19:10:34 -0600 Subject: rtl/smp: implement SMP dead/alive handling --- tb/top/test_smp.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tb/top/test_smp.py') diff --git a/tb/top/test_smp.py b/tb/top/test_smp.py index a3cb61f..b7903ce 100644 --- a/tb/top/test_smp.py +++ b/tb/top/test_smp.py @@ -9,6 +9,11 @@ from tb.models import CorePaceModel, SmpModel async def bring_up(dut): await cocotb.start(Clock(dut.clk, 2).start()) + dut.cpu_alive_0.value = 1 + dut.cpu_alive_1.value = 1 + dut.cpu_alive_2.value = 1 + dut.cpu_alive_3.value = 1 + dut.rst_n.value = 1 await Timer(1) dut.rst_n.value = 0 -- cgit v1.2.3