Fix unconnected w_mask_in on cce_inst_ram in bp_quad#3921
Open
openroad-ci wants to merge 5 commits intoThe-OpenROAD-Project:masterfrom
Open
Fix unconnected w_mask_in on cce_inst_ram in bp_quad#3921openroad-ci wants to merge 5 commits intoThe-OpenROAD-Project:masterfrom
openroad-ci wants to merge 5 commits intoThe-OpenROAD-Project:masterfrom
Conversation
The fakeram45_256x48 instance in bsg_mem_1rw_sync_width_p48_els_p256 had its w_mask_in port left unconnected, causing ORD-2041 sanity check failure. Tie w_mask_in to 0 (active-low) to enable whole-word writes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Jaehyun Kim <jhkim@precisioninno.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Jaehyun Kim <jhkim@precisioninno.com>
Contributor
|
Fixes #3922 |
…ate/OpenROAD-flow-scripts into secure-fix-bp-quad-rtl
…ate/OpenROAD-flow-scripts into secure-fix-bp-quad-rtl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
fakeram45_256x48instance inbsg_mem_1rw_sync_width_p48_els_p256(cce_inst_ram) hadw_mask_in[47:0]left unconnected in the input RTL (bsg_chip_block.sv2v.v)ORD-2041sanity check failure:non-output ITerm 'w_mask_in[0]' is not connected to any netw_mask_into{48{1'b0}}(active-low write mask = all bits write-enabled) for whole-word writesRoot Cause
The BSG wrapper
bsg_mem_1rw_synchas no write-mask interface (only whole-word write viaw_i), but the underlyingfakeram45_256x48macro requiresw_mask_into be connected. Other fakeram instances in the design (e.g.,fakeram45_64x124) properly connectw_mask_invia~w_mask_i/~write_mask_i(active-low).Test plan
nangate45/bp_quad/baseflow and verify ORD-2041 error is resolved🤖 Generated with Claude Code