📄 or1200_ic_top.v
字号:
////////////////////////////////////////////////////////////////////////// //////// OR1200's Data Cache top level //////// //////// This file is part of the OpenRISC 1200 project //////// http://www.opencores.org/cores/or1k/ //////// //////// Description //////// Instantiation of all IC blocks. //////// //////// To Do: //////// - make it smaller and faster //////// //////// Author(s): //////// - Damjan Lampret, lampret@opencores.org //////// ////////////////////////////////////////////////////////////////////////////// //////// Copyright (C) 2000 Authors and OPENCORES.ORG //////// //////// 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: or1200_ic_top.v,v $// Revision 1.7 2002/10/17 20:04:40 lampret// Added BIST scan. Special VS RAMs need to be used to implement BIST.//// Revision 1.6 2002/03/29 15:16:55 lampret// Some of the warnings fixed.//// Revision 1.5 2002/02/11 04:33:17 lampret// Speed optimizations (removed duplicate _cyc_ and _stb_). Fixed D/IMMU cache-inhibit attr.//// Revision 1.4 2002/02/01 19:56:54 lampret// Fixed combinational loops.//// Revision 1.3 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.2 2002/01/14 06:18:22 lampret// Fixed mem2reg bug in FAST implementation. Updated debug unit to work with new genpc/if.//// 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.10 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 ic.v and ic.v. Fixed CR+LF.//// Revision 1.9 2001/10/14 13:12:09 lampret// MP3 version.//// Revision 1.1.1.1 2001/10/06 10:18:35 igorm// no message//// Revision 1.4 2001/08/13 03:36:20 lampret// Added cfg regs. Moved all defines into one defines.v file. More cleanup.//// Revision 1.3 2001/08/09 13:39:33 lampret// Major clean-up.//// Revision 1.2 2001/07/22 03:31:53 lampret// Fixed RAM's oen bug. Cache bypass under development.//// Revision 1.1 2001/07/20 00:46:03 lampret// Development version of RTL. Libraries are missing.////// synopsys translate_off`include "timescale.v"// synopsys translate_on`include "or1200_defines.v"//// Data cache//module or1200_ic_top( // Rst, clk and clock control clk, rst, // External i/f icbiu_dat_o, icbiu_adr_o, icbiu_cyc_o, icbiu_stb_o, icbiu_we_o, icbiu_sel_o, icbiu_cab_o, icbiu_dat_i, icbiu_ack_i, icbiu_err_i, // Internal i/f ic_en, icimmu_adr_i, icimmu_cycstb_i, icimmu_ci_i, icpu_sel_i, icpu_tag_i, icpu_dat_o, icpu_ack_o, icimmu_rty_o, icimmu_err_o, icimmu_tag_o,`ifdef OR1200_BIST // RAM BIST scanb_rst, scanb_si, scanb_so, scanb_en, scanb_clk,`endif // SPRs spr_cs, spr_write, spr_dat_i);parameter dw = `OR1200_OPERAND_WIDTH;//// I/O////// Clock and reset//input clk;input rst;//// External I/F//output [dw-1:0] icbiu_dat_o;output [31:0] icbiu_adr_o;output icbiu_cyc_o;output icbiu_stb_o;output icbiu_we_o;output [3:0] icbiu_sel_o;output icbiu_cab_o;input [dw-1:0] icbiu_dat_i;input icbiu_ack_i;input icbiu_err_i;//// Internal I/F//input ic_en;input [31:0] icimmu_adr_i;input icimmu_cycstb_i;input icimmu_ci_i;input [3:0] icpu_sel_i;input [3:0] icpu_tag_i;output [dw-1:0] icpu_dat_o;output icpu_ack_o;output icimmu_rty_o;output icimmu_err_o;output [3:0] icimmu_tag_o;`ifdef OR1200_BIST//// RAM BIST//input scanb_rst, scanb_si, scanb_en, scanb_clk;output scanb_so;`endif//// SPR access//input spr_cs;input spr_write;input [31:0] spr_dat_i;//// Internal wires and regs//wire tag_v;wire [`OR1200_ICTAG_W-2:0] tag;wire [dw-1:0] to_icram;wire [dw-1:0] from_icram;wire [31:0] saved_addr;wire [3:0] icram_we;wire ictag_we;wire [31:0] ic_addr;wire icfsm_biu_read;reg tagcomp_miss;wire [`OR1200_ICINDXH:`OR1200_ICLS] ictag_addr;wire ictag_en;wire ictag_v; wire ic_inv;wire icfsm_first_hit_ack;wire icfsm_first_miss_ack;wire icfsm_first_miss_err;wire icfsm_burst;wire icfsm_tag_we;`ifdef OR1200_BIST//// RAM BIST//wire scanb_ram_so;wire scanb_tag_so;wire scanb_ram_si = scanb_si;wire scanb_tag_si = scanb_ram_so;assign scanb_so = scanb_tag_so;`endif//// Simple assignments//assign icbiu_adr_o = ic_addr;assign ic_inv = spr_cs & spr_write;assign ictag_we = icfsm_tag_we | ic_inv;assign ictag_addr = ic_inv ? spr_dat_i[`OR1200_ICINDXH:`OR1200_ICLS] : ic_addr[`OR1200_ICINDXH:`OR1200_ICLS];assign ictag_en = ic_inv | ic_en;assign ictag_v = ~ic_inv;//// Data to BIU is from ICRAM when IC is enabled or from LSU when// IC is disabled//assign icbiu_dat_o = 32'h00000000;//// Bypases of the IC when IC is disabled//assign icbiu_cyc_o = (ic_en) ? icfsm_biu_read : icimmu_cycstb_i;assign icbiu_stb_o = (ic_en) ? icfsm_biu_read : icimmu_cycstb_i;assign icbiu_we_o = 1'b0;assign icbiu_sel_o = (ic_en & icfsm_biu_read) ? 4'b1111 : icpu_sel_i;assign icbiu_cab_o = (ic_en) ? icfsm_burst : 1'b0;assign icimmu_rty_o = ~icpu_ack_o & ~icimmu_err_o;assign icimmu_tag_o = icimmu_err_o ? `OR1200_ITAG_BE : icpu_tag_i;//// CPU normal and error termination//assign icpu_ack_o = ic_en ? (icfsm_first_hit_ack | icfsm_first_miss_ack) : icbiu_ack_i;assign icimmu_err_o = ic_en ? icfsm_first_miss_err : icbiu_err_i;//// Select between claddr generated by IC FSM and addr[3:2] generated by LSU//assign ic_addr = (icfsm_biu_read) ? saved_addr : icimmu_adr_i;//// Select between input data generated by LSU or by BIU//assign to_icram = icbiu_dat_i;//// Select between data generated by ICRAM or passed by BIU//assign icpu_dat_o = icfsm_first_miss_ack | !ic_en ? icbiu_dat_i : from_icram;//// Tag comparison//always @(tag or saved_addr or tag_v) begin if ((tag != saved_addr[31:`OR1200_ICTAGL]) || !tag_v) tagcomp_miss = 1'b1; else tagcomp_miss = 1'b0;end//// Instantiation of IC Finite State Machine//or1200_ic_fsm or1200_ic_fsm( .clk(clk), .rst(rst), .ic_en(ic_en), .icimmu_cycstb_i(icimmu_cycstb_i), .icimmu_ci_i(icimmu_ci_i), .tagcomp_miss(tagcomp_miss), .biudata_valid(icbiu_ack_i), .biudata_error(icbiu_err_i), .start_addr(icimmu_adr_i), .saved_addr(saved_addr), .icram_we(icram_we), .biu_read(icfsm_biu_read), .first_hit_ack(icfsm_first_hit_ack), .first_miss_ack(icfsm_first_miss_ack), .first_miss_err(icfsm_first_miss_err), .burst(icfsm_burst), .tag_we(icfsm_tag_we));//// Instantiation of IC main memory//or1200_ic_ram or1200_ic_ram( .clk(clk), .rst(rst),`ifdef OR1200_BIST // RAM BIST .scanb_rst(scanb_rst), .scanb_si(scanb_ram_si), .scanb_so(scanb_ram_so), .scanb_en(scanb_en), .scanb_clk(scanb_clk),`endif .addr(ic_addr[`OR1200_ICINDXH:2]), .en(ic_en), .we(icram_we), .datain(to_icram), .dataout(from_icram));//// Instantiation of IC TAG memory//or1200_ic_tag or1200_ic_tag( .clk(clk), .rst(rst),`ifdef OR1200_BIST // RAM BIST .scanb_rst(scanb_rst), .scanb_si(scanb_tag_si), .scanb_so(scanb_tag_so), .scanb_en(scanb_en), .scanb_clk(scanb_clk),`endif .addr(ictag_addr), .en(ictag_en), .we(ictag_we), .datain({ic_addr[31:`OR1200_ICTAGL], ictag_v}), .tag_v(tag_v), .tag(tag));endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -