Find a file
Yehowshua Immanuel 83f78d1c3d add comment
2024-03-20 02:52:44 -04:00
bdpi wow - loopback in sim actually worksgit status 2023-09-28 06:57:38 -04:00
experiments/bram Remove .DS_Store files 2024-03-20 02:39:13 -04:00
src add comment 2024-03-20 02:52:44 -04:00
ulx3s_fpga first commit 2023-09-23 02:08:37 -04:00
.gitignore improve some indentation in src/Top.bsv 2024-03-20 02:49:08 -04:00
Makefile it's been a while 2024-03-20 02:25:31 -04:00
README.md update README with instructions for simulating main core 2024-03-20 02:48:49 -04:00
shell.nix it's been a while 2024-03-20 02:25:31 -04:00
sim_inspect.tcl it's been a while 2024-03-20 02:25:31 -04:00

MannaChip

Introduction:

Manna was the miraculous food provided by God requiring no effort on behalf of the Israelites. In a similar vein, the MannaChip processor delivers groundbreaking performance, necessitating minimal intervention on the developer's or user's part.

Just as "man does not live by bread alone, but by every word that proceeds from the mouth of God," this chip thrives on every instruction word you provide. It's not just about raw computational power, but the synergy between user input and hardware optimization.

TOPMODULE=mkTop make v_compile to generate verilog. The generated verilog can be found in the verilog_RTL/ folder.

Status

Admittedly, not very far. Perhaps one could say we've got the beginnings of what would make for LED and UART controllers.

Dependencies

Linux

Running nix-shell should just work on Linux. To be fair, haven't tested this yet.

MacOS

Upstream nix recipes need to be adjusted a bit to work on MacOS, so for now do:

  1. Yosys at git commit: 7ce5011c24b
  2. nextpnr-0.4-36-gc8406b71
  3. PrjTrellis at git commit: 1.2.1-22-g35f5aff
  4. openFPGALoader

Programming the ULX3S

make fpga
# You may need the following line to set your screen device config
# to one parity and one stop bit. Tested working on MacOS, should
# work on Linux.
stty -f /dev/tty.usbserial-K00027 -cstopb -parenb
screen /dev/tty.usbserial-K00027 9600

Simulation

Main Chip Core

The following command will simulate the UART loopback by having the bluespec sources call some C code that commandeers the tty, disables echo, exposes the tty write buffer to bluespec(what the user types), and exposes a buffer bluespec can use to write to terminal.

TOPMODULE=mkSim make b_all

Experiments

See experiments README.

Generating Verilog

TOPMODULE=mkTop make v_compile

TODO

  • debug UART accuracy - clk divider should be frequency matched

Notable Reference Files

/Users/yehowshuaimmanuel/git/bsc/testsuite/bsc.bsv_examples/cpu/FiveStageCPUQ3sol.bsv