From: Andrey Miroshnikov Date: Thu, 18 Nov 2021 12:46:02 +0000 (+0000) Subject: Adding JTAG server/client copy from soc repo, still need more fixes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d6d82a10a9a837e6821c0e198e335a2589900b7;p=pinmux.git Adding JTAG server/client copy from soc repo, still need more fixes --- diff --git a/src/spec/jtagremote.py b/src/spec/jtagremote.py new file mode 100644 index 0000000..013c473 --- /dev/null +++ b/src/spec/jtagremote.py @@ -0,0 +1,54 @@ +#The server code +import socket +from socket import close, AF_INET, SOCK_STREAM +import sys +import select +import time + +from jtagutils import JTAGServer, JTAGClient + + +def test_clientserver_jtagremote(): + s = JTAGServer() + c = JTAGClient() + s.get_connection() + + c.jtagremote_client_send((1, 0, 1)) + while True: + resp = s.jtagremote_server_recv(1) + if resp is not None: + print ("response", resp) + break + + while True: + resp = s.jtagremote_server_recv(1) + if resp is not None: + print ("response", resp) + break + + tdo = c.jtagremote_client_recv() + print ("client recv", tdo) + + s.close() + c.close() + + +def test_clientserver(): + s = JTAGServer() + c = JTAGClient() + s.get_connection() + + c.send(str.encode("h")) + while True: + resp = s.get_data() + if resp is not None: + print ("response", resp) + break + s.close() + c.close() + + +if __name__ == '__main__': + #test_clientserver() + test_clientserver_jtagremote() + diff --git a/src/spec/test_jtag_tap_srv.py b/src/spec/test_jtag_tap_srv.py index 9d6089a..ee9cbbc 100644 --- a/src/spec/test_jtag_tap_srv.py +++ b/src/spec/test_jtag_tap_srv.py @@ -1,4 +1,5 @@ -"""DMI 2 JTAG test +"""JTAG test copied from soc/debug/test/test_jtag_tap_srv.py +Trying to avoid using soc modules here based on Staf Verhaegen (Chips4Makers) wishbone TAP """ @@ -9,17 +10,17 @@ from c4m.nmigen.jtag.tap import TAP, IOType from c4m.nmigen.jtag.bus import Interface as JTAGInterface #from soc.debug.dmi import DMIInterface, DBGCore #from soc.debug.test.dmi_sim import dmi_sim -from soc.debug.jtag import JTAG -from soc.debug.test.jtagremote import JTAGServer, JTAGClient +from jtag import JTAG, resiotypes +from jtagremote import JTAGServer, JTAGClient #from soc.bus.sram import SRAM from nmigen import Memory, Signal, Module -from nmigen.back.pysim import Simulator, Delay, Settle, Tick +from nmigen.sim import Simulator, Delay, Settle, Tick from nmutil.util import wrap -from soc.debug.jtagutils import (jtag_read_write_reg, - jtag_srv, jtag_set_reset, - jtag_set_ir, jtag_set_get_dr) +from jtagutils import (jtag_read_write_reg, + jtag_srv, jtag_set_reset, + jtag_set_ir, jtag_set_get_dr) def test_pinset(): return { @@ -221,7 +222,8 @@ def jtag_sim(dut, srv_dut): if __name__ == '__main__': - dut = JTAG(test_pinset(), wb_data_wid=64) + # Not sure if need to specify wb_data width here + dut = JTAG(test_pinset(), "sync") # , wb_data_wid=64) dut.stop = False # rather than the client access the JTAG bus directly @@ -242,12 +244,12 @@ if __name__ == '__main__': cdut._ir_width = dut._ir_width cdut.scan_len = dut.scan_len - memory = Memory(width=64, depth=16) - sram = SRAM(memory=memory, bus=dut.wb) + #memory = Memory(width=64, depth=16) + #sram = SRAM(memory=memory, bus=dut.wb) m = Module() m.submodules.ast = dut - m.submodules.sram = sram + #m.submodules.sram = sram sim = Simulator(m) sim.add_clock(1e-6, domain="sync") # standard clock