From c016bf7a099994cb3bd5ce66efd9b622521bd8e3 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 6 Apr 2021 21:38:04 +0100 Subject: [PATCH] 8-bit granularity on JTAG wishbone --- src/soc/debug/jtag.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/debug/jtag.py b/src/soc/debug/jtag.py index 5cac2cd4..c2a6f095 100644 --- a/src/soc/debug/jtag.py +++ b/src/soc/debug/jtag.py @@ -82,6 +82,7 @@ class JTAG(DMITAP, Pins): # create and connect wishbone self.wb = self.add_wishbone(ircodes=[5, 6, 7], features={'err'}, address_width=29, data_width=wb_data_wid, + granularity=8, # 8-bit wide name="jtag_wb") # create DMI2JTAG (goes through to dmi_sim()) -- 2.30.2