Skip to content

Latest commit

 

History

History
67 lines (45 loc) · 2.42 KB

ROADMAP.md

File metadata and controls

67 lines (45 loc) · 2.42 KB

Project F Roadmap

This page summarises the plans for Project F over the next few months and in the longer term.
Follow @WillFlux for updates and join the FPGA discussion on 1BitSquared Discord.

See About Project F and the repo README for an introduction to Project F.

During 2021

FPGA Graphics

I will complete the FPGA Graphics series (blog) by the end of 2021. All the important designs are in place, but I need to add some iCEBreaker versions, fix bugs, and complete blog explanations for framebuffers.

Maths & Algorithms Series

I plan to begin the next major blog series, covering Maths & Algorithms. The first part is due to cover the representation of numbers in Verilog. This series will incorporate existing designs for division, and square root etc.

Module & Signal Naming

Project F module and signal naming aren't as consistent and straightforward as theys could be. Renaming things can be painful for users, but it's better done now while the project has relatively few forks.

I plan to make the following module name changes:

  • clock_gen_NNN.sv to clock_NNN.sv
  • display_timings_NNN.sv to display_NNN.sv
  • simple_display_timings_NNN.sv to simple_NNN.sv

Where NNN is 480p, 720p etc. Xilinx clock_480p will also gain support for 5x clocks to match other display clocks.

I plan to standardise on the following signal names for memory/storage signals:

  • addr - single-port address
  • addr_write - write address
  • addr_read - read address
  • data_in - data in
  • data_out - data out

Control signals:

  • start - start module process (if idle)
  • busy - module is busy processing
  • done - process is complete (high for one tick)
  • oe - output enable
  • we - write enable

And the following parameter names:

  • ADDRW - address width
  • CORDW - coordinate width
  • DATAW - data width
  • DEPTH - number of elements

Other names may be added to these lists during 2021.

Future

These are some of the ideas for future content.

  • Board Support
    • Add ULX3S (ECP5) support for FPGA Graphics
    • Complete Nexys Video support for FPGA Graphics
  • Series
    • RISC-V CPU Designs
    • Serial Protocols
    • 3D Graphics
    • FPGA Languages: nMigen, SpinalHDL etc.
    • Formal Verification