| // Copyright (C) 2020-2021 The SymbiFlow Authors. |
| // |
| // Use of this source code is governed by a ISC-style |
| // license that can be found in the LICENSE file or at |
| // https://opensource.org/licenses/ISC |
| // |
| // SPDX-License-Identifier:ISC |
| |
| module BRAM #(parameter AWIDTH = 9, |
| parameter DWIDTH = 32) |
| (clk, |
| rce, |
| ra, |
| rq, |
| wce, |
| wa, |
| wd); |
| |
| input clk; |
| |
| input rce; |
| input [AWIDTH-1:0] ra; |
| output reg [DWIDTH-1:0] rq; |
| |
| input wce; |
| input [AWIDTH-1:0] wa; |
| input [DWIDTH-1:0] wd; |
| |
| reg [DWIDTH-1:0] memory[0:AWIDTH-1]; |
| |
| always @(posedge clk) begin |
| if (rce) |
| rq <= memory[ra]; |
| |
| if (wce) |
| memory[wa] <= wd; |
| end |
| |
| integer i; |
| initial |
| begin |
| for(i = 0; i < AWIDTH-1; i = i + 1) |
| memory[i] = 0; |
| end |
| |
| endmodule |
| |
| module BRAM_32x512( |
| clk, |
| rce, |
| ra, |
| rq, |
| wce, |
| wa, |
| wd |
| ); |
| |
| parameter AWIDTH = 9; |
| parameter DWIDTH = 32; |
| |
| input clk; |
| input rce; |
| input [AWIDTH-1:0] ra; |
| output reg [DWIDTH-1:0] rq; |
| input wce; |
| input [AWIDTH-1:0] wa; |
| input [DWIDTH-1:0] wd; |
| |
| BRAM #(.AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) |
| BRAM_32x512 ( .clk(clk), |
| .rce(rce), |
| .ra(ra), |
| .rq(rq), |
| .wce(wce), |
| .wa(wa), |
| .wd(wd)); |
| |
| endmodule |
| |
| module BRAM_16x1024( |
| clk, |
| rce, |
| ra, |
| rq, |
| wce, |
| wa, |
| wd |
| ); |
| |
| parameter AWIDTH = 10; |
| parameter DWIDTH = 16; |
| |
| input clk; |
| input rce; |
| input [AWIDTH-1:0] ra; |
| output reg [DWIDTH-1:0] rq; |
| input wce; |
| input [AWIDTH-1:0] wa; |
| input [DWIDTH-1:0] wd; |
| |
| BRAM #(.AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) |
| BRAM_16x1024 ( .clk(clk), |
| .rce(rce), |
| .ra(ra), |
| .rq(rq), |
| .wce(wce), |
| .wa(wa), |
| .wd(wd)); |
| |
| |
| endmodule |
| |
| module BRAM_8x2048( |
| clk, |
| rce, |
| ra, |
| rq, |
| wce, |
| wa, |
| wd |
| ); |
| |
| parameter AWIDTH = 11; |
| parameter DWIDTH = 8; |
| |
| input clk; |
| input rce; |
| input [AWIDTH-1:0] ra; |
| output reg [DWIDTH-1:0] rq; |
| input wce; |
| input [AWIDTH-1:0] wa; |
| input [DWIDTH-1:0] wd; |
| |
| BRAM #(.AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) |
| BRAM_8x2048 ( .clk(clk), |
| .rce(rce), |
| .ra(ra), |
| .rq(rq), |
| .wce(wce), |
| .wa(wa), |
| .wd(wd)); |
| |
| |
| endmodule |
| |
| module BRAM_4x4096( |
| clk, |
| rce, |
| ra, |
| rq, |
| wce, |
| wa, |
| wd |
| ); |
| |
| parameter AWIDTH = 12; |
| parameter DWIDTH = 4; |
| |
| input clk; |
| input rce; |
| input [AWIDTH-1:0] ra; |
| output reg [DWIDTH-1:0] rq; |
| input wce; |
| input [AWIDTH-1:0] wa; |
| input [DWIDTH-1:0] wd; |
| |
| BRAM #(.AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) |
| BRAM_4x4096 ( .clk(clk), |
| .rce(rce), |
| .ra(ra), |
| .rq(rq), |
| .wce(wce), |
| .wa(wa), |
| .wd(wd)); |
| |
| endmodule |