From 3b57b3c950afc74e9db6bff7cb1659ef6668ab7e Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 19 Jan 2022 17:46:13 +0000 Subject: [PATCH] whoops forgot to enable fast-reg read in DMI --- src/soc/debug/dmi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/debug/dmi.py b/src/soc/debug/dmi.py index cda675ac..e8349182 100644 --- a/src/soc/debug/dmi.py +++ b/src/soc/debug/dmi.py @@ -256,6 +256,7 @@ class CoreDebug(Elaboratable): continue with m.If(dmi.din == 32+i): sync += fast_index.eq(i) + sync += fast_en.eq(1) # Log address with m.Elif(dmi.addr_i == DBGCore.LOG_ADDR): -- 2.30.2