OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [orpsocv2/] [rtl/] [verilog/] [or1200/] [or1200_immu_tlb.v] - Diff between revs 360 and 482

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 360 Rev 482
Line 45... Line 45...
//
//
// $Log: or1200_immu_tlb.v,v $
// $Log: or1200_immu_tlb.v,v $
// Revision 2.0  2010/06/30 11:00:00  ORSoC
// Revision 2.0  2010/06/30 11:00:00  ORSoC
// Minor update: 
// Minor update: 
// Bugs fixed, coding style changed. 
// Bugs fixed, coding style changed. 
//
 
// Revision 1.9  2004/06/08 18:17:36  lampret
 
// Non-functional changes. Coding style fixes.
 
//
 
// Revision 1.8  2004/04/05 08:29:57  lampret
 
// Merged branch_qmem into main tree.
 
//
 
// Revision 1.6.4.1  2003/12/09 11:46:48  simons
 
// Mbist nameing changed, Artisan ram instance signal names fixed, some synthesis waning fixed.
 
//
 
// Revision 1.6  2002/10/28 16:34:32  mohor
 
// RAMs wrong connected to the BIST scan chain.
 
//
 
// Revision 1.5  2002/10/17 20:04:40  lampret
 
// Added BIST scan. Special VS RAMs need to be used to implement BIST.
 
//
 
// Revision 1.4  2002/08/14 06:23:50  lampret
 
// Disabled ITLB translation when 1) doing access to ITLB SPRs or 2) crossing page. This modification was tested only with parts of IMMU test - remaining test cases needs to be run.
 
//
 
// Revision 1.3  2002/02/11 04:33:17  lampret
 
// Speed optimizations (removed duplicate _cyc_ and _stb_). Fixed D/IMMU cache-inhibit attr.
 
//
 
// Revision 1.2  2002/01/28 01:16:00  lampret
 
// Changed 'void' nop-ops instead of insn[0] to use insn[16]. Debug unit stalls the tick timer. Prepared new flag generation for add and and insns. Blocked DC/IC while they are turned off. Fixed I/D MMU SPRs layout except WAYs. TODO: smart IC invalidate, l.j 2 and TLB ways.
 
//
 
// Revision 1.1  2002/01/03 08:16:15  lampret
 
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
 
//
 
// Revision 1.8  2001/10/21 17:57:16  lampret
 
// Removed params from generic_XX.v. Added translate_off/on in sprs.v and id.v. Removed spr_addr from dc.v and ic.v. Fixed CR+LF.
 
//
 
// Revision 1.7  2001/10/14 13:12:09  lampret
 
// MP3 version.
 
//
 
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
 
// no message
 
//
 
//
 
 
 
// synopsys translate_off
// synopsys translate_off
`include "timescale.v"
`include "timescale.v"
// synopsys translate_on
// synopsys translate_on
`include "or1200_defines.v"
`include "or1200_defines.v"
Line 281... Line 243...
      .we(tlb_mr_we),
      .we(tlb_mr_we),
      //.oe(1'b1),
      //.oe(1'b1),
      .addr(tlb_index),
      .addr(tlb_index),
      .di(tlb_mr_ram_in),
      .di(tlb_mr_ram_in),
      .doq(tlb_mr_ram_out)
      .doq(tlb_mr_ram_out)
 
`ifdef OR1200_RAM_PARITY
 
      , .p_err()
 
`endif
      );
      );
 
 
//
//
// Instantiation of ITLB Translate Registers
// Instantiation of ITLB Translate Registers
//
//
Line 306... Line 271...
      .we(tlb_tr_we),
      .we(tlb_tr_we),
      //.oe(1'b1),
      //.oe(1'b1),
      .addr(tlb_index),
      .addr(tlb_index),
      .di(tlb_tr_ram_in),
      .di(tlb_tr_ram_in),
      .doq(tlb_tr_ram_out)
      .doq(tlb_tr_ram_out)
 
`ifdef OR1200_RAM_PARITY
 
      , .p_err()
 
`endif
      );
      );
 
 
endmodule
endmodule
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.