mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-27 17:00:41 -04:00
This change has been informed by advice from the lowRISC legal committee. The Solderpad 0.51 license states "the Licensor permits any Work licensed under this License, at the option of the Licensee, to be treated as licensed under the Apache License Version 2.0". We use this freedom to convert license markings to Apache 2.0. This commit ensures that we retain all authorship and copyright attribution information.
98 lines
3 KiB
Systemverilog
98 lines
3 KiB
Systemverilog
// Copyright lowRISC contributors.
|
|
// Copyright 2018 ETH Zurich and University of Bologna.
|
|
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Engineer: Francesco Conti - f.conti@unibo.it //
|
|
// //
|
|
// Additional contributions by: //
|
|
// Markus Wegmann - markus.wegmann@technokrat.ch //
|
|
// //
|
|
// Design Name: RISC-V register file //
|
|
// Project Name: ibex //
|
|
// Language: SystemVerilog //
|
|
// //
|
|
// Description: Register file with 31 or 15x 32 bit wide registers. //
|
|
// Register 0 is fixed to 0. This register file is based on //
|
|
// flip flops. //
|
|
// //
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
`include "ibex_config.sv"
|
|
|
|
module ibex_register_file
|
|
#(
|
|
parameter RV32E = 0,
|
|
parameter DATA_WIDTH = 32
|
|
)
|
|
(
|
|
// Clock and Reset
|
|
input logic clk,
|
|
input logic rst_n,
|
|
|
|
input logic test_en_i,
|
|
|
|
//Read port R1
|
|
input logic [4:0] raddr_a_i,
|
|
output logic [DATA_WIDTH-1:0] rdata_a_o,
|
|
|
|
//Read port R2
|
|
input logic [4:0] raddr_b_i,
|
|
output logic [DATA_WIDTH-1:0] rdata_b_o,
|
|
|
|
|
|
// Write port W1
|
|
input logic [4:0] waddr_a_i,
|
|
input logic [DATA_WIDTH-1:0] wdata_a_i,
|
|
input logic we_a_i
|
|
|
|
);
|
|
|
|
localparam ADDR_WIDTH = RV32E ? 4 : 5;
|
|
localparam NUM_WORDS = 2**ADDR_WIDTH;
|
|
|
|
logic [NUM_WORDS-1:0][DATA_WIDTH-1:0] rf_reg;
|
|
logic [NUM_WORDS-1:0][DATA_WIDTH-1:0] rf_reg_tmp;
|
|
logic [NUM_WORDS-1:0] we_a_dec;
|
|
|
|
always_comb
|
|
begin : we_a_decoder
|
|
for (int i = 0; i < NUM_WORDS; i++) begin
|
|
if (waddr_a_i == i)
|
|
we_a_dec[i] = we_a_i;
|
|
else
|
|
we_a_dec[i] = 1'b0;
|
|
end
|
|
end
|
|
|
|
|
|
genvar i;
|
|
generate
|
|
|
|
// loop from 1 to NUM_WORDS-1 as R0 is nil
|
|
for (i = 1; i < NUM_WORDS; i++)
|
|
begin : rf_gen
|
|
|
|
always_ff @(posedge clk, negedge rst_n)
|
|
begin : register_write_behavioral
|
|
if (rst_n==1'b0) begin
|
|
rf_reg_tmp[i] <= 'b0;
|
|
end else begin
|
|
if (we_a_dec[i])
|
|
rf_reg_tmp[i] <= wdata_a_i;
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
// R0 is nil
|
|
assign rf_reg[0] = '0;
|
|
assign rf_reg[NUM_WORDS-1:1] = rf_reg_tmp[NUM_WORDS-1:1];
|
|
|
|
endgenerate
|
|
|
|
assign rdata_a_o = rf_reg[raddr_a_i];
|
|
assign rdata_b_o = rf_reg[raddr_b_i];
|
|
|
|
endmodule
|