?? tap_top.v
字號(hào):
////////////////////////////////////////////////////////////////////////// //////// tap_top.v //////// //////// //////// This file is part of the JTAG Test Access Port (TAP) //////// http://www.opencores.org/projects/jtag/ //////// //////// Author(s): //////// Igor Mohor (igorm@opencores.org) //////// //////// //////// All additional information is avaliable in the README.txt //////// file. //////// ////////////////////////////////////////////////////////////////////////////// //////// Copyright (C) 2000 - 2003 Authors //////// //////// This source file may be used and distributed without //////// restriction provided that this copyright statement is not //////// removed from the file and that any derivative work contains //////// the original copyright notice and the associated disclaimer. //////// //////// This source file is free software; you can redistribute it //////// and/or modify it under the terms of the GNU Lesser General //////// Public License as published by the Free Software Foundation; //////// either version 2.1 of the License, or (at your option) any //////// later version. //////// //////// This source is distributed in the hope that it will be //////// useful, but WITHOUT ANY WARRANTY; without even the implied //////// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //////// PURPOSE. See the GNU Lesser General Public License for more //////// details. //////// //////// You should have received a copy of the GNU Lesser General //////// Public License along with this source; if not, download it //////// from http://www.opencores.org/lgpl.shtml //////// ////////////////////////////////////////////////////////////////////////////// CVS Revision History//// $Log: tap_top.v,v $// Revision 1.6 2004/01/27 10:00:33 mohor// Unused registers removed.//// Revision 1.5 2004/01/18 09:27:39 simons// Blocking non blocking assignmenst fixed.//// Revision 1.4 2004/01/17 17:37:44 mohor// capture_dr_o added to ports.//// Revision 1.3 2004/01/14 13:50:56 mohor// 5 consecutive TMS=1 causes reset of TAP.//// Revision 1.2 2004/01/08 10:29:44 mohor// Control signals for tdo_pad_o mux are changed to negedge.//// Revision 1.1 2003/12/23 14:52:14 mohor// Directory structure changed. New version of TAP.//// Revision 1.10 2003/10/23 18:08:01 mohor// MBIST chain connection fixed.//// Revision 1.9 2003/10/23 16:17:02 mohor// CRC logic changed.//// Revision 1.8 2003/10/21 09:48:31 simons// Mbist support added.//// Revision 1.7 2002/11/06 14:30:10 mohor// Trst active high. Inverted on higher layer.//// Revision 1.6 2002/04/22 12:55:56 mohor// tdo_padoen_o changed to tdo_padoe_o. Signal is active high.//// Revision 1.5 2002/03/26 14:23:38 mohor// Signal tdo_padoe_o changed back to tdo_padoen_o.//// Revision 1.4 2002/03/25 13:16:15 mohor// tdo_padoen_o changed to tdo_padoe_o. Signal was always active high, just// not named correctly.//// Revision 1.3 2002/03/12 14:30:05 mohor// Few outputs for boundary scan chain added.//// Revision 1.2 2002/03/12 10:31:53 mohor// tap_top and dbg_top modules are put into two separate modules. tap_top// contains only tap state machine and related logic. dbg_top contains all// logic necessery for debugging.//// Revision 1.1 2002/03/08 15:28:16 mohor// Structure changed. Hooks for jtag chain added.////////// synopsys translate_off`include "timescale.v"// synopsys translate_on`include "tap_defines.v"// Top modulemodule tap_top( // JTAG pads tms_pad_i, tck_pad_i, trst_pad_i, tdi_pad_i, tdo_pad_o, tdo_padoe_o, // TAP states shift_dr_o, pause_dr_o, update_dr_o, capture_dr_o, // Select signals for boundary scan or mbist extest_select_o, sample_preload_select_o, mbist_select_o, debug_select_o, // TDO signal that is connected to TDI of sub-modules. tdo_o, // TDI signals from sub-modules debug_tdi_i, // from debug module bs_chain_tdi_i, // from Boundary Scan Chain mbist_tdi_i // from Mbist Chain );// JTAG pinsinput tms_pad_i; // JTAG test mode select padinput tck_pad_i; // JTAG test clock padinput trst_pad_i; // JTAG test reset padinput tdi_pad_i; // JTAG test data input padoutput tdo_pad_o; // JTAG test data output padoutput tdo_padoe_o; // Output enable for JTAG test data output pad // TAP statesoutput shift_dr_o;output pause_dr_o;output update_dr_o;output capture_dr_o;// Select signals for boundary scan or mbistoutput extest_select_o;output sample_preload_select_o;output mbist_select_o;output debug_select_o;// TDO signal that is connected to TDI of sub-modules.output tdo_o;// TDI signals from sub-modulesinput debug_tdi_i; // from debug moduleinput bs_chain_tdi_i; // from Boundary Scan Chaininput mbist_tdi_i; // from Mbist Chain// Registersreg test_logic_reset;reg run_test_idle;reg select_dr_scan;reg capture_dr;reg shift_dr;reg exit1_dr;reg pause_dr;reg exit2_dr;reg update_dr;reg select_ir_scan;reg capture_ir;reg shift_ir, shift_ir_neg;reg exit1_ir;reg pause_ir;reg exit2_ir;reg update_ir;reg extest_select;reg sample_preload_select;reg idcode_select;reg mbist_select;reg debug_select;reg bypass_select;reg tdo_pad_o;reg tdo_padoe_o;reg tms_q1, tms_q2, tms_q3, tms_q4;wire tms_reset;assign tdo_o = tdi_pad_i;assign shift_dr_o = shift_dr;assign pause_dr_o = pause_dr;assign update_dr_o = update_dr;assign capture_dr_o = capture_dr;assign extest_select_o = extest_select;assign sample_preload_select_o = sample_preload_select;assign mbist_select_o = mbist_select;assign debug_select_o = debug_select;always @ (posedge tck_pad_i)begin tms_q1 <= #1 tms_pad_i; tms_q2 <= #1 tms_q1; tms_q3 <= #1 tms_q2; tms_q4 <= #1 tms_q3;endassign tms_reset = tms_q1 & tms_q2 & tms_q3 & tms_q4 & tms_pad_i; // 5 consecutive TMS=1 causes reset/*********************************************************************************** ** TAP State Machine: Fully JTAG compliant ** ***********************************************************************************/// test_logic_reset statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) test_logic_reset<=#1 1'b1; else if (tms_reset) test_logic_reset<=#1 1'b1; else begin if(tms_pad_i & (test_logic_reset | select_ir_scan)) test_logic_reset<=#1 1'b1; else test_logic_reset<=#1 1'b0; endend// run_test_idle statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) run_test_idle<=#1 1'b0; else if (tms_reset) run_test_idle<=#1 1'b0; else if(~tms_pad_i & (test_logic_reset | run_test_idle | update_dr | update_ir)) run_test_idle<=#1 1'b1; else run_test_idle<=#1 1'b0;end// select_dr_scan statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) select_dr_scan<=#1 1'b0; else if (tms_reset) select_dr_scan<=#1 1'b0; else if(tms_pad_i & (run_test_idle | update_dr | update_ir)) select_dr_scan<=#1 1'b1; else select_dr_scan<=#1 1'b0;end// capture_dr statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) capture_dr<=#1 1'b0; else if (tms_reset) capture_dr<=#1 1'b0; else if(~tms_pad_i & select_dr_scan) capture_dr<=#1 1'b1; else capture_dr<=#1 1'b0;end// shift_dr statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) shift_dr<=#1 1'b0; else if (tms_reset) shift_dr<=#1 1'b0; else if(~tms_pad_i & (capture_dr | shift_dr | exit2_dr)) shift_dr<=#1 1'b1; else shift_dr<=#1 1'b0;end// exit1_dr statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) exit1_dr<=#1 1'b0; else if (tms_reset) exit1_dr<=#1 1'b0; else if(tms_pad_i & (capture_dr | shift_dr)) exit1_dr<=#1 1'b1; else exit1_dr<=#1 1'b0;end// pause_dr statealways @ (posedge tck_pad_i or posedge trst_pad_i)begin if(trst_pad_i) pause_dr<=#1 1'b0; else if (tms_reset) pause_dr<=#1 1'b0; else
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -