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 support for alternative bus interfaces #152

Open
jbush001 opened this issue Mar 4, 2018 · 0 comments
Open

Add support for alternative bus interfaces #152

jbush001 opened this issue Mar 4, 2018 · 0 comments
Labels

Comments

@jbush001
Copy link
Owner

jbush001 commented Mar 4, 2018

Currently the cache uses the AMBA AXI bus protocol to interface with memory. As a proof of concept, it would be nice to also support other bus interfaces like the open Wishbone protocol. Ideally the bus could be selected with a build flag.

Currently all of the bus functionality is consolidated in one module: l2_axi_bus_interface.sv, which is a deliberate decision to simplify using other bus interfaces. I considered breaking this into two parts: one that handles the queues and interfacing with the rest of the L2 pipeline, and the other that handles bus handshaking. But this would seem to preclude some optimizations that allow multiple transactions to be outstanding (#74). The alternative would be to create a separate bus_interface module for each other bus technology. Configuring this in the design is a big clunky though (especially exposing it conditionally via the port interface, which will not work well with Verilog mode AUTO expansion).

Issue #133 relates to using a standard bus for I/O transactions, which would also need to transition to Wishbone.

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

No branches or pull requests

1 participant