//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// OR1200's IC FSM ////
|
//// OR1200's IC FSM ////
|
//// ////
|
//// ////
|
//// This file is part of the OpenRISC 1200 project ////
|
//// This file is part of the OpenRISC 1200 project ////
|
//// http://opencores.org/project,or1k ////
|
//// http://opencores.org/project,or1k ////
|
//// ////
|
//// ////
|
//// Description ////
|
//// Description ////
|
//// Insn cache state machine ////
|
//// Insn cache state machine ////
|
//// ////
|
//// ////
|
//// To Do: ////
|
//// To Do: ////
|
//// - make it smaller and faster ////
|
//// - make it smaller and faster ////
|
//// ////
|
//// ////
|
//// Author(s): ////
|
//// Author(s): ////
|
//// - Damjan Lampret, lampret@opencores.org ////
|
//// - Damjan Lampret, lampret@opencores.org ////
|
//// ////
|
//// ////
|
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//// ////
|
//// ////
|
//// Copyright (C) 2000 Authors and OPENCORES.ORG ////
|
//// Copyright (C) 2000 Authors and OPENCORES.ORG ////
|
//// ////
|
//// ////
|
//// This source file may be used and distributed without ////
|
//// This source file may be used and distributed without ////
|
//// restriction provided that this copyright statement is not ////
|
//// restriction provided that this copyright statement is not ////
|
//// removed from the file and that any derivative work contains ////
|
//// removed from the file and that any derivative work contains ////
|
//// the original copyright notice and the associated disclaimer. ////
|
//// the original copyright notice and the associated disclaimer. ////
|
//// ////
|
//// ////
|
//// This source file is free software; you can redistribute it ////
|
//// This source file is free software; you can redistribute it ////
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
//// Public License as published by the Free Software Foundation; ////
|
//// Public License as published by the Free Software Foundation; ////
|
//// either version 2.1 of the License, or (at your option) any ////
|
//// either version 2.1 of the License, or (at your option) any ////
|
//// later version. ////
|
//// later version. ////
|
//// ////
|
//// ////
|
//// This source is distributed in the hope that it will be ////
|
//// This source is distributed in the hope that it will be ////
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
//// details. ////
|
//// details. ////
|
//// ////
|
//// ////
|
//// You should have received a copy of the GNU Lesser General ////
|
//// You should have received a copy of the GNU Lesser General ////
|
//// Public License along with this source; if not, download it ////
|
//// Public License along with this source; if not, download it ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// from http://www.opencores.org/lgpl.shtml ////
|
//// ////
|
//// ////
|
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//
|
//
|
// $Log: or1200_ic_fsm.v,v $
|
// $Log: or1200_ic_fsm.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.
|
// Bugs fixed.
|
//
|
//
|
|
|
// 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"
|
|
|
`define OR1200_ICFSM_IDLE 2'd0
|
`define OR1200_ICFSM_IDLE 2'd0
|
`define OR1200_ICFSM_CFETCH 2'd1
|
`define OR1200_ICFSM_CFETCH 2'd1
|
`define OR1200_ICFSM_LREFILL3 2'd2
|
`define OR1200_ICFSM_LREFILL3 2'd2
|
`define OR1200_ICFSM_IFETCH 2'd3
|
`define OR1200_ICFSM_IFETCH 2'd3
|
|
|
//
|
//
|
// Data cache FSM for cache line of 16 bytes (4x singleword)
|
// Instruction cache FSM
|
//
|
//
|
|
|
module or1200_ic_fsm(
|
module or1200_ic_fsm(
|
// Clock and reset
|
// Clock and reset
|
clk, rst,
|
clk, rst,
|
|
|
// Internal i/f to top level IC
|
// Internal i/f to top level IC
|
ic_en, icqmem_cycstb_i, icqmem_ci_i,
|
ic_en, icqmem_cycstb_i, icqmem_ci_i,
|
tagcomp_miss, biudata_valid, biudata_error, start_addr, saved_addr,
|
tagcomp_miss,
|
icram_we, biu_read, first_hit_ack, first_miss_ack, first_miss_err,
|
biudata_valid, biudata_error,
|
burst, tag_we
|
start_addr, saved_addr,
|
|
icram_we, tag_we,
|
|
biu_read,
|
|
first_hit_ack, first_miss_ack, first_miss_err,
|
|
burst
|
);
|
);
|
|
|
//
|
//
|
// I/O
|
// I/O
|
//
|
//
|
input clk;
|
input clk;
|
input rst;
|
input rst;
|
input ic_en;
|
input ic_en;
|
input icqmem_cycstb_i;
|
input icqmem_cycstb_i;
|
input icqmem_ci_i;
|
input icqmem_ci_i;
|
input tagcomp_miss;
|
input tagcomp_miss;
|
input biudata_valid;
|
input biudata_valid;
|
input biudata_error;
|
input biudata_error;
|
input [31:0] start_addr;
|
input [31:0] start_addr;
|
output [31:0] saved_addr;
|
output [31:0] saved_addr;
|
output [3:0] icram_we;
|
output [3:0] icram_we;
|
output biu_read;
|
output biu_read;
|
output first_hit_ack;
|
output first_hit_ack;
|
output first_miss_ack;
|
output first_miss_ack;
|
output first_miss_err;
|
output first_miss_err;
|
output burst;
|
output burst;
|
output tag_we;
|
output tag_we;
|
|
|
//
|
//
|
// Internal wires and regs
|
// Internal wires and regs
|
//
|
//
|
reg [31:0] saved_addr_r;
|
reg [31:0] saved_addr_r;
|
reg [1:0] state;
|
reg [1:0] state;
|
reg [2:0] cnt;
|
reg [2:0] cnt;
|
reg hitmiss_eval;
|
reg hitmiss_eval;
|
reg load;
|
reg load;
|
reg cache_inhibit;
|
reg cache_inhibit;
|
reg waiting_for_first_fill_ack; // JPB
|
reg last_eval_miss; // JPB
|
|
|
//
|
//
|
// Generate of ICRAM write enables
|
// Generate of ICRAM write enables
|
//
|
//
|
assign icram_we = {4{biu_read & biudata_valid & !cache_inhibit}};
|
assign icram_we = {4{biu_read & biudata_valid & !cache_inhibit}};
|
assign tag_we = biu_read & biudata_valid & !cache_inhibit;
|
assign tag_we = biu_read & biudata_valid & !cache_inhibit;
|
|
|
//
|
//
|
// BIU read and write
|
// BIU read and write
|
//
|
//
|
assign biu_read = (hitmiss_eval & tagcomp_miss) | (!hitmiss_eval & load);
|
assign biu_read = (hitmiss_eval & tagcomp_miss) | (!hitmiss_eval & load);
|
|
|
//assign saved_addr = hitmiss_eval ? start_addr : saved_addr_r;
|
//assign saved_addr = hitmiss_eval ? start_addr : saved_addr_r;
|
assign saved_addr = saved_addr_r;
|
assign saved_addr = saved_addr_r;
|
|
|
//
|
//
|
// Assert for cache hit first word ready
|
// Assert for cache hit first word ready
|
// Assert for cache miss first word stored/loaded OK
|
// Assert for cache miss first word stored/loaded OK
|
// Assert for cache miss first word stored/loaded with an error
|
// Assert for cache miss first word stored/loaded with an error
|
//
|
//
|
assign first_hit_ack = (state == `OR1200_ICFSM_CFETCH) & hitmiss_eval &
|
assign first_hit_ack = (state == `OR1200_ICFSM_CFETCH) & hitmiss_eval &
|
!tagcomp_miss & !cache_inhibit;
|
!tagcomp_miss & !cache_inhibit;
|
assign first_miss_ack = (state == `OR1200_ICFSM_CFETCH) & biudata_valid;
|
assign first_miss_ack = (state == `OR1200_ICFSM_CFETCH) & biudata_valid;
|
assign first_miss_err = (state == `OR1200_ICFSM_CFETCH) & biudata_error;
|
assign first_miss_err = (state == `OR1200_ICFSM_CFETCH) & biudata_error;
|
|
|
//
|
//
|
// Assert burst when doing reload of complete cache line
|
// Assert burst when doing reload of complete cache line
|
//
|
//
|
assign burst = (state == `OR1200_ICFSM_CFETCH) & tagcomp_miss &
|
assign burst = (state == `OR1200_ICFSM_CFETCH) & tagcomp_miss &
|
!cache_inhibit | (state == `OR1200_ICFSM_LREFILL3);
|
!cache_inhibit | (state == `OR1200_ICFSM_LREFILL3);
|
|
|
//
|
//
|
// Main IC FSM
|
// Main IC FSM
|
//
|
//
|
always @(posedge clk or `OR1200_RST_EVENT rst) begin
|
always @(posedge clk or `OR1200_RST_EVENT rst) begin
|
if (rst == `OR1200_RST_VALUE) begin
|
if (rst == `OR1200_RST_VALUE) begin
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
saved_addr_r <= 32'b0;
|
saved_addr_r <= 32'b0;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
cnt <= 3'b000;
|
cnt <= 3'b000;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
waiting_for_first_fill_ack <= 0; // JPB
|
last_eval_miss <= 0; // JPB
|
|
|
end
|
end
|
else
|
else
|
case (state) // synopsys parallel_case
|
case (state) // synopsys parallel_case
|
`OR1200_ICFSM_IDLE :
|
`OR1200_ICFSM_IDLE :
|
if (ic_en & icqmem_cycstb_i) begin // fetch
|
if (ic_en & icqmem_cycstb_i) begin // fetch
|
state <= `OR1200_ICFSM_CFETCH;
|
state <= `OR1200_ICFSM_CFETCH;
|
saved_addr_r <= start_addr;
|
saved_addr_r <= start_addr;
|
hitmiss_eval <= 1'b1;
|
hitmiss_eval <= 1'b1;
|
load <= 1'b1;
|
load <= 1'b1;
|
cache_inhibit <= icqmem_ci_i;
|
cache_inhibit <= icqmem_ci_i;
|
waiting_for_first_fill_ack <= 0; // JPB
|
last_eval_miss <= 0; // JPB
|
end
|
end
|
else begin // idle
|
else begin // idle
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
end
|
end
|
`OR1200_ICFSM_CFETCH: begin // fetch
|
`OR1200_ICFSM_CFETCH: begin // fetch
|
|
|
if (icqmem_cycstb_i & icqmem_ci_i)
|
if (icqmem_cycstb_i & icqmem_ci_i)
|
cache_inhibit <= 1'b1;
|
cache_inhibit <= 1'b1;
|
|
|
if (hitmiss_eval)
|
if (hitmiss_eval)
|
saved_addr_r[31:13] <= start_addr[31:13];
|
saved_addr_r[31:13] <= start_addr[31:13];
|
|
|
if ((!ic_en) ||
|
if ((!ic_en) ||
|
// fetch aborted (usually caused by IMMU)
|
// fetch aborted (usually caused by IMMU)
|
(hitmiss_eval & !icqmem_cycstb_i) ||
|
(hitmiss_eval & !icqmem_cycstb_i) ||
|
(biudata_error) || // fetch terminated with an error
|
(biudata_error) || // fetch terminated with an error
|
// fetch from cache-inhibited page
|
// fetch from cache-inhibited page
|
(cache_inhibit & biudata_valid)) begin
|
(cache_inhibit & biudata_valid)) begin
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
waiting_for_first_fill_ack <= 0;
|
|
end // if ((!ic_en) ||...
|
end // if ((!ic_en) ||...
|
// fetch missed, finish current external fetch and refill
|
// fetch missed, wait for first fetch and continue filling line
|
else if (tagcomp_miss & biudata_valid) begin
|
else if (tagcomp_miss & biudata_valid) begin
|
state <= `OR1200_ICFSM_LREFILL3;
|
state <= `OR1200_ICFSM_LREFILL3;
|
saved_addr_r[3:2] <= saved_addr_r[3:2] + 1'd1;
|
saved_addr_r[3:2] <= saved_addr_r[3:2] + 1'd1;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
cnt <= `OR1200_ICLS-2;
|
cnt <= `OR1200_ICLS-2;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
waiting_for_first_fill_ack <= 0; // JPB
|
|
end
|
end
|
// fetch aborted (usually caused by exception)
|
// fetch aborted (usually caused by exception)
|
else if (!icqmem_cycstb_i) begin
|
else if (!icqmem_cycstb_i
|
|
& !last_eval_miss // JPB
|
|
) begin
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
waiting_for_first_fill_ack <= 0; // JPB
|
|
end
|
end
|
// fetch hit, finish immediately
|
// fetch hit, wait in this state for now
|
else if (!tagcomp_miss & !icqmem_ci_i &
|
else if (!tagcomp_miss & !icqmem_ci_i) begin
|
!waiting_for_first_fill_ack) begin
|
|
state <= `OR1200_ICFSM_IDLE; // JPB
|
|
load <= 1'b0; // JPB
|
|
hitmiss_eval <= 1'b0; // JPB
|
|
saved_addr_r <= start_addr;
|
saved_addr_r <= start_addr;
|
cache_inhibit <= 1'b0;
|
cache_inhibit <= 1'b0;
|
end
|
end
|
else // fetch in-progress
|
else // fetch in-progress
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
|
|
if (hitmiss_eval & tagcomp_miss) // JPB
|
if (hitmiss_eval & !tagcomp_miss) // JPB
|
waiting_for_first_fill_ack <= 1;
|
last_eval_miss <= 1; // JPB
|
|
|
end
|
end
|
`OR1200_ICFSM_LREFILL3 : begin
|
`OR1200_ICFSM_LREFILL3 : begin
|
// abort because IC has just been turned off
|
// abort because IC has just been turned off
|
if (!ic_en) begin
|
if (!ic_en) begin
|
// invalidate before IC can be turned on
|
// invalidate before IC can be turned on
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
saved_addr_r <= start_addr;
|
saved_addr_r <= start_addr;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
end
|
end
|
// refill ack, more fetchs to come
|
// refill ack, more fetchs to come
|
else if (biudata_valid && (|cnt)) begin
|
else if (biudata_valid && (|cnt)) begin
|
cnt <= cnt - 3'd1;
|
cnt <= cnt - 3'd1;
|
saved_addr_r[3:2] <= saved_addr_r[3:2] + 1'd1;
|
saved_addr_r[3:2] <= saved_addr_r[3:2] + 1'd1;
|
end
|
end
|
// last fetch of line refill
|
// last fetch of line refill
|
else if (biudata_valid) begin
|
else if (biudata_valid) begin
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
saved_addr_r <= start_addr;
|
saved_addr_r <= start_addr;
|
hitmiss_eval <= 1'b0;
|
hitmiss_eval <= 1'b0;
|
load <= 1'b0;
|
load <= 1'b0;
|
end
|
end
|
end
|
end
|
default:
|
default:
|
state <= `OR1200_ICFSM_IDLE;
|
state <= `OR1200_ICFSM_IDLE;
|
endcase
|
endcase
|
end
|
end
|
|
|
endmodule
|
endmodule
|
|
|