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

AXI interface hangs when given both AWVALID and AWREADY #51

Open
ZipCPU opened this issue Aug 23, 2019 · 0 comments
Open

AXI interface hangs when given both AWVALID and AWREADY #51

ZipCPU opened this issue Aug 23, 2019 · 0 comments

Comments

@ZipCPU
Copy link

ZipCPU commented Aug 23, 2019

See

case AWVALID_ARVALID is
when "10" =>
WRITE_ADDRESS_EN <= '1';
READ_ADDRESS_EN <= '0';
STATE_ns <= WRITE_ADDRESS;
when "01" =>
WRITE_ADDRESS_EN <= '0';
READ_ADDRESS_EN <= '1';
STATE_ns <= READ_ADDRESS;
when others =>
WRITE_ADDRESS_EN <= '0';
READ_ADDRESS_EN <= '0';
STATE_ns <= IDLE;
end case;

If both AWVALID and AWREADY are true on the same clock, the design should pick one, and come back later to handle the other.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant