Merge pull request #259 from antonblanchard/dmi-reset

Reset JTAG/DMI
cache-tlb-parameters-2
Paul Mackerras 3 years ago committed by GitHub
commit 00446a9169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -222,11 +222,12 @@ begin
-- jtag_req latch. Could be split into 3 processes but it's probably
-- not worthwhile.
--
shifter: process(jtag_clk, jtag_reset)
shifter: process(jtag_clk, jtag_reset, sys_reset)
begin
if jtag_reset = '1' then
if jtag_reset = '1' or sys_reset = '1' then
shiftr <= (others => '0');
jtag_req <= '0';
request <= (others => '0');
elsif rising_edge(jtag_clk) then

-- Handle jtag "commands" when sel is 1

Loading…
Cancel
Save