Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add subpackages #59

Merged
merged 4 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
- regfile_128x65_floorplan_make
- lb_32x128_generate_abstract_make
- data_2048x8_generate_abstract_make
- subpackage:tag_array_64x184_generate_abstract
env:
DEBIAN_FRONTEND: "noninteractive"
steps:
Expand Down
2 changes: 2 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ filegroup(
data = [
":util",
],
visibility = [":__subpackages__"],
)

filegroup(
Expand Down Expand Up @@ -55,6 +56,7 @@ filegroup(
data = [
":util",
],
visibility = [":__subpackages__"],
)


Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ bazel_dep(name = "bazel-orfs")
git_override(
module_name = "bazel-orfs",
remote = "https://github.com/The-OpenROAD-Project/bazel-orfs.git",
commit = "4d9d5084270d7cfe51019f3cb6b886f6f8b57872",
commit = "44378cf64346f64eeab5fec7860634a680c88c6c",
)

# Read: https://github.com/The-OpenROAD-Project/megaboom?tab=readme-ov-file#local-workspace
Expand Down
17 changes: 17 additions & 0 deletions subpackage/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
load("@bazel-orfs//:openroad.bzl", "build_openroad")

build_openroad(
name = "tag_array_64x184",
io_constraints = "//:io-sram",
mock_abstract = True,
mock_stage = "floorplan",
sdc_constraints = "//:constraints-sram",
stage_args = {
"floorplan": [
"CORE_UTILIZATION=40",
"CORE_ASPECT_RATIO=2",
],
"place": ["PLACE_DENSITY=0.65"],
},
verilog_files = ["rtl/tag_array_64x184.sv"],
)
67 changes: 67 additions & 0 deletions subpackage/rtl/tag_array_64x184.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
// Standard header to adapt well known macros for prints and assertions.

// Users can define 'ASSERT_VERBOSE_COND' to add an extra gate to assert error printing.
`ifndef ASSERT_VERBOSE_COND_
`ifdef ASSERT_VERBOSE_COND
`define ASSERT_VERBOSE_COND_ (`ASSERT_VERBOSE_COND)
`else // ASSERT_VERBOSE_COND
`define ASSERT_VERBOSE_COND_ 1
`endif // ASSERT_VERBOSE_COND
`endif // not def ASSERT_VERBOSE_COND_

// Users can define 'STOP_COND' to add an extra gate to stop conditions.
`ifndef STOP_COND_
`ifdef STOP_COND
`define STOP_COND_ (`STOP_COND)
`else // STOP_COND
`define STOP_COND_ 1
`endif // STOP_COND
`endif // not def STOP_COND_

// VCS coverage exclude_file
module tag_array_64x184(
input [5:0] R0_addr,
input R0_en,
R0_clk,
output [183:0] R0_data,
input [5:0] W0_addr,
input W0_en,
W0_clk,
input [183:0] W0_data,
input [7:0] W0_mask
);

reg [183:0] Memory[0:15];
reg _R0_en_d0;
reg [5:0] _R0_addr_d0;
reg [3:0] _W0_addr_d0, _R0_addr_d1;

always @(posedge R0_clk) begin
_R0_en_d0 <= R0_en;
_R0_addr_d0 <= R0_addr;
_R0_addr_d1 <= R0_addr[5:2] ^ R0_addr[1:0];
end // always @(posedge)

always @(posedge W0_clk) begin
_W0_addr_d0 <= W0_addr[5:2] ^ W0_addr[1:0];
if (W0_en & W0_mask[0])
Memory[_W0_addr_d0][32'h0 +: 23] <= W0_data[22:0];
if (W0_en & W0_mask[1])
Memory[_W0_addr_d0][32'h17 +: 23] <= W0_data[45:23];
if (W0_en & W0_mask[2])
Memory[_W0_addr_d0][32'h2E +: 23] <= W0_data[68:46];
if (W0_en & W0_mask[3])
Memory[_W0_addr_d0][32'h45 +: 23] <= W0_data[91:69];
if (W0_en & W0_mask[4])
Memory[_W0_addr_d0][32'h5C +: 23] <= W0_data[114:92];
if (W0_en & W0_mask[5])
Memory[_W0_addr_d0][32'h73 +: 23] <= W0_data[137:115];
if (W0_en & W0_mask[6])
Memory[_W0_addr_d0][32'h8A +: 23] <= W0_data[160:138];
if (W0_en & W0_mask[7])
Memory[_W0_addr_d0][32'hA1 +: 23] <= W0_data[183:161];
end // always @(posedge)

assign R0_data = _R0_en_d0 ? Memory[_R0_addr_d1] : 184'bx;
endmodule