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

fpga: Change default burst for xilinx ips #34

Open
wants to merge 8 commits into
base: pulp
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixing an error on msiptw reported by Synopsys DC
  • Loading branch information
Your Name committed May 23, 2024
commit b090ead7ae7ba645cc848d7d4216fdf74bdd2f60
16 changes: 9 additions & 7 deletions rtl/translation_logic/rv_iommu_msiptw.sv
Original file line number Diff line number Diff line change
Expand Up @@ -398,18 +398,20 @@ module rv_iommu_msiptw #(
end
end : flat_seq

// States
typedef enum logic[1:0] {
MRIF_PTE, // 00
NOTICE_PTE, // 01
MRIF_ERROR // 10
} state_mrif_t;

//# MSI-MRIF
generate

// MRIF support enabled
if (MSITrans == rv_iommu::MSI_FLAT_MRIF) begin : gen_mrif_support

// States
typedef enum logic[1:0] {
MRIF_PTE, // 00
NOTICE_PTE, // 01
MRIF_ERROR // 10
} state_mrif_t;

state_mrif_t mrif_state_q, mrif_state_n;

// Read ports
Expand Down Expand Up @@ -565,4 +567,4 @@ module rv_iommu_msiptw #(
end : gen_mrif_support_disabled
endgenerate

endmodule
endmodule