mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-27 17:00:41 -04:00
[rtl] Add FPGA Register File
This commit adds a register file designed to be synthesized into FPGA synchronous-write / asynchronous-read design elements. For the artya7-100 example, the register file is implemented by 12 RAM32M primitives, conserving approximately 600 Logic LUTs and 1000 flip-flops at the expense of 48 LUTRAMs. Signed-off-by: ganoam <gnoam@live.com>
This commit is contained in:
parent
0c55214380
commit
7969cb722b
4 changed files with 74 additions and 2 deletions
|
@ -17,6 +17,7 @@ lint_off -msg PINCONNECTEMPTY
|
|||
// implementation choices for the same module.
|
||||
lint_off -msg DECLFILENAME -file "*/rtl/ibex_register_file_ff.sv"
|
||||
lint_off -msg DECLFILENAME -file "*/rtl/ibex_register_file_latch.sv"
|
||||
lint_off -msg DECLFILENAME -file "*/rtl/ibex_register_file_fpga.sv"
|
||||
|
||||
// Bits of signal are not used: boot_addr_i[7:0]
|
||||
// Boot address is 256B aligned, cleaner to pass all bits in
|
||||
|
@ -45,6 +46,7 @@ lint_off -msg UNUSED -file "*/rtl/ibex_multdiv_fast.sv" -lines 68
|
|||
// Signal is not used: test_en_i
|
||||
// testability signal
|
||||
lint_off -msg UNUSED -file "*/rtl/ibex_register_file_ff.sv" -lines 21
|
||||
lint_off -msg UNUSED -file "*/rtl/ibex_register_file_fpga.sv" -lines 22
|
||||
|
||||
// Signal is not used: clk_i
|
||||
// leaving clk and reset connected in-case we want to add assertions
|
||||
|
@ -57,6 +59,7 @@ lint_off -msg UNUSED -file "*/rtl/ibex_decoder.sv" -lines 21
|
|||
lint_off -msg UNUSED -file "*/rtl/ibex_pmp.sv" -lines 16
|
||||
lint_off -msg UNUSED -file "*/rtl/ibex_compressed_decoder.sv" -lines 15
|
||||
lint_off -msg UNUSED -file "*/rtl/ibex_decoder.sv" -lines 22
|
||||
lint_off -msg UNUSED -file "*/rtl/ibex_register_file_fpga.sv" -lines 20
|
||||
|
||||
// Signal unoptimizable: Feedback to clock or circular logic:
|
||||
// ibex_core.cs_registers_i.mie_q
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue