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

Fix LPDDR5 open row incorrect detection #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions src/dram/impl/LPDDR5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ class LPDDR5 : public IDRAM, public Implementation {
case m_states["Closed"]: return m_commands["ACT-1"];
case m_states["Pre-Opened"]: return m_commands["ACT-2"];
case m_states["Opened"]: {
if (node->m_row_state.find(0) != node->m_row_state.end()) {
if (node->m_row_state.find(addr_vec[m_levels["row"]]) != node->m_row_state.end()) {
Node* rank = node->m_parent_node->m_parent_node;
if (rank->m_final_synced_cycle < clk) {
return m_commands["CASRD"];
Expand All @@ -482,7 +482,7 @@ class LPDDR5 : public IDRAM, public Implementation {
case m_states["Closed"]: return m_commands["ACT-1"];
case m_states["Pre-Opened"]: return m_commands["ACT-2"];
case m_states["Opened"]: {
if (node->m_row_state.find(0) != node->m_row_state.end()) {
if (node->m_row_state.find(addr_vec[m_levels["row"]]) != node->m_row_state.end()) {
Node* rank = node->m_parent_node->m_parent_node;
if (rank->m_final_synced_cycle < clk) {
return m_commands["CASWR"];
Expand Down