Line 41... |
Line 41... |
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//
|
//
|
// CVS Revision History
|
// CVS Revision History
|
//
|
//
|
// $Log: not supported by cvs2svn $
|
// $Log: not supported by cvs2svn $
|
|
// Revision 1.5 2002/10/11 10:09:01 mihad
|
|
// Added additional testcase and changed rst name in BIST to trst
|
|
//
|
// Revision 1.4 2002/10/08 17:17:05 mihad
|
// Revision 1.4 2002/10/08 17:17:05 mihad
|
// Added BIST signals for RAMs.
|
// Added BIST signals for RAMs.
|
//
|
//
|
// Revision 1.3 2002/02/01 15:25:12 mihad
|
// Revision 1.3 2002/02/01 15:25:12 mihad
|
// Repaired a few bugs, updated specification, added test bench files and design document
|
// Repaired a few bugs, updated specification, added test bench files and design document
|
Line 164... |
Line 167... |
PCI_SERRn_EN_OUT
|
PCI_SERRn_EN_OUT
|
|
|
`ifdef PCI_BIST
|
`ifdef PCI_BIST
|
,
|
,
|
// debug chain signals
|
// debug chain signals
|
trst ,
|
scanb_rst, // bist scan reset
|
SO ,
|
scanb_clk, // bist scan clock
|
SI ,
|
scanb_si, // bist scan serial in
|
shift_DR ,
|
scanb_so, // bist scan serial out
|
capture_DR ,
|
scanb_sen // bist scan shift enable
|
extest ,
|
|
tck
|
|
`endif
|
`endif
|
);
|
);
|
|
|
// WISHBONE system signals
|
// WISHBONE system signals
|
input CLK_I ;
|
input CLK_I ;
|
Line 272... |
Line 273... |
|
|
`ifdef PCI_BIST
|
`ifdef PCI_BIST
|
/*-----------------------------------------------------
|
/*-----------------------------------------------------
|
BIST debug chain port signals
|
BIST debug chain port signals
|
-----------------------------------------------------*/
|
-----------------------------------------------------*/
|
input trst ;
|
input scanb_rst; // bist scan reset
|
output SO ;
|
input scanb_clk; // bist scan clock
|
input SI ;
|
input scanb_si; // bist scan serial in
|
input shift_DR ;
|
output scanb_so; // bist scan serial out
|
input capture_DR ;
|
input scanb_sen; // bist scan shift enable
|
input extest ;
|
|
input tck ;
|
|
|
|
// internal wires for serial chain connection
|
// internal wires for serial chain connection
|
wire SO_internal ;
|
wire SO_internal ;
|
wire SI_internal = SO_internal ;
|
wire SI_internal = SO_internal ;
|
`endif
|
`endif
|
Line 798... |
Line 797... |
.wbu_pciif_stop_reg_in (wbu_pciif_stop_reg_in),
|
.wbu_pciif_stop_reg_in (wbu_pciif_stop_reg_in),
|
.wbu_pciif_devsel_reg_in (wbu_pciif_devsel_reg_in)
|
.wbu_pciif_devsel_reg_in (wbu_pciif_devsel_reg_in)
|
|
|
`ifdef PCI_BIST
|
`ifdef PCI_BIST
|
,
|
,
|
.trst (trst),
|
.scanb_rst (scanb_rst),
|
.SO (SO_internal),
|
.scanb_clk (scanb_clk),
|
.SI (SI),
|
.scanb_si (scanb_si),
|
.shift_DR (shift_DR),
|
.scanb_so (scanb_so),
|
.capture_DR (capture_DR),
|
.scanb_sen (scanb_sen)
|
.extest (extest),
|
|
.tck (tck)
|
|
`endif
|
`endif
|
);
|
);
|
|
|
// PCI TARGET UNIT INPUTS
|
// PCI TARGET UNIT INPUTS
|
wire [31:0] pciu_mdata_in = MDAT_I ;
|
wire [31:0] pciu_mdata_in = MDAT_I ;
|
Line 982... |
Line 979... |
.pciu_pci_drcomp_pending_out (pciu_pci_drcomp_pending_out),
|
.pciu_pci_drcomp_pending_out (pciu_pci_drcomp_pending_out),
|
.pciu_pciw_fifo_empty_out (pciu_pciw_fifo_empty_out)
|
.pciu_pciw_fifo_empty_out (pciu_pciw_fifo_empty_out)
|
|
|
`ifdef PCI_BIST
|
`ifdef PCI_BIST
|
,
|
,
|
.trst (trst),
|
.scanb_rst (scanb_rst),
|
.SO (SO),
|
.scanb_clk (scanb_clk),
|
.SI (SI_internal),
|
.scanb_si (scanb_si),
|
.shift_DR (shift_DR),
|
.scanb_so (scanb_so),
|
.capture_DR (capture_DR),
|
.scanb_sen (scanb_sen)
|
.extest (extest),
|
|
.tck (tck)
|
|
`endif
|
`endif
|
);
|
);
|
|
|
|
|
// CONFIGURATION SPACE INPUTS
|
// CONFIGURATION SPACE INPUTS
|