You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. # gatemate_experiments
  2. Ongoing experiments with the Cologne Chip's GateMate FPGA architecture. All experiments are done with teh GateMate FPGA Starter (Eval) Kit.
  3. ## Designs
  4. ### blink
  5. Simple design which should display a blinking LED waving from LED1-LED8 of the GateMate FPGA Starter Kit. It uses *CC_PLL* & *CC_CFG_END* primitives of the GateMate FPGA.
  6. ### uart_reg
  7. Register file which can be accessed through UART. It uses *CC_PLL* & *CC_CFG_END* primitives of the GateMate FPGA. It contains 8 registers storing values of one byte each. The first received byte on the axis in port contains command & address:
  8. * `7 ` reserved
  9. * `6:4` register address
  10. * `3:0` command (`0x0` read, `0x1` write)
  11. In case of a write command, the payload has to follow with the next byte. In case of a read command, the value of the addressed register is returned on the axis out port. Register at address 0 is special. It contains the version and is read-only. Writes to that register are ignored.
  12. ## Further Ressources
  13. * [GateMate FPGA](https://www.colognechip.com/programmable-logic/gatemate)
  14. * [GateMate FPGA Eval Board](https://www.colognechip.com/programmable-logic/gatemate-evaluation-board)
  15. * [GHDL VHDL Simulation & Synthesis](https://github.com/ghdl/ghdl)
  16. * [Yosys Synthesis Suite](https://github.com/YosysHQ/yosys)