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

Support generation of FIFO / ring buffer style memories for queues #129

Open
mithro opened this issue Feb 3, 2022 · 1 comment
Open
Labels
enhancement New feature or request

Comments

@mithro
Copy link

mithro commented Feb 3, 2022

FIFOs and ring buffers are super useful to enable high performance transfer between things like DMA controllers and peripherals like video output / input systems or between CPUs and FPGAs or between various blocks found inside things like JPEG encoders.

The basic structure is;

  • Any bit width -- 1 bit, 8 bits (IE a byte) and 32bits/64bits (IE 4 / 8 bytes) are common sizes
  • 1 write port
  • 1 read port

The actual memory addresses are not normally exposed, they can generally just be incremented / decremented by 1.
There is normally a signal which indicates if the write and read ports are pointing at the same address (or differ by a single value).

@donn
Copy link
Member

donn commented Feb 4, 2022

@shalan Do you have a netlist for this usecase?

@donn donn added the enhancement New feature or request label Feb 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants