Bare-metal Rust on Zynq-7000
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
harry c69cd9951e Update README and build.sh (#59)
update build.sh to use rpi-4 directly; fix README

README: update build instruction

build.sh: fix missing package argument

Co-authored-by: Harry Ho <hh@m-labs.hk>
3 years ago
.cargo update rust + smoltcp 4 years ago
experiments i2c: disable its usage on Cora Z7-10 3 years ago
libasync libasync: assert that callback consumes data in smoltcp recv 3 years ago
libboard_zynq i2c: disable its usage on Cora Z7-10 3 years ago
libcortex_a9 libcortex_a9/mmu: share ocm3. 3 years ago
libregister finished register definitions 4 years ago
libsupport_zynq Changes usage of sev/wfe to spinlock functions. 3 years ago
openocd openocd: fix cora z7-10 PL_TAPID 4 years ago
.gitignore remove zc706.elf from gitignore 4 years ago
Cargo.lock linked_list_allocator: upgraded to 0.8.4 3 years ago
Cargo.toml Cargo.toml: flip LTO back on to fit OCM 4 years ago
README.md Update README and build.sh (#59) 3 years ago
armv7-none-eabihf.json define custom target, use with cargo-xbuild 4 years ago
build.sh Update README and build.sh (#59) 3 years ago
channel-rust-nightly.toml Cargo.lock: fix 4 years ago
default.nix updated cargoSha256 3 years ago
qemu.gdb PoC: boot, uart output in qemu 5 years ago
remote_run.sh add remote run script 4 years ago
runner.sh PoC: boot, uart output in qemu 5 years ago
shell.nix Updated build instruction. 3 years ago
tmux.sh add support for cora z7 in tmux script 4 years ago

README.md

Build

nix-shell --command "cargo xbuild --release -p experiments"

Currently the ELF output is placed at target/armv7-none-eabihf/release/experiments

Debug

Using the Xilinx toolchain

Tested with the ZC706 board.

Run the Xilinx Microprocessor Debugger:

/opt/Xilinx/14.7/ISE_DS/EDK/bin/lin64/xmd

Connect to target (given it is connected and you have permissions):

connect arm hw

Leave xmd running.

Start the Xilinx version of the GNU debugger with your latest build:

/opt/Xilinx/14.7/ISE_DS/EDK/gnu/arm/lin/bin/arm-xilinx-linux-gnueabi-gdb zc706

Connect the debugger to xmd over TCP on localhost:

target remote :1234

Proceed using gdb with load, c

Using OpenOCD

Running on the ZC706

nix-shell --command "cargo xbuild --release -p experiments"
cd openocd
openocd -f zc706.cfg

Running on the Cora Z7-10

nix-shell --command "cd experiments && cargo xbuild --release --no-default-features --features=target_cora_z7_10"
cd openocd
openocd -f cora-z7-10.cfg

Loading a bitstream into volatile memory

openocd -f zc706.cfg -c "pld load 0 blinker_migen.bit; exit"

Development Process

Clone this repo onto your development/build machine and the raspberry pi that controls the Xilinx 7000 board

On the dev machine, the below script builds zc706 and secure copies it to the target pi (in your pi $HOME directory):

cd ~/zynq-rs
./build.sh $your_user_or_ssh_id

On the pi, we need an information rich environment that includes a relatively reliable gdb experience (that includes ctrl-p and ctrl-n command history that persists across cgdb executions), run:

ssh pi4
cd zynq-rs
# For ZC706, run:
./tmux.sh 0
# For Cora Z7, run:
./tmux.sh

Time to run your code with:

zynq-connect
zynq-restart
c

or, for a more succinct experience, (identical to above)

dc
dr
c

After every build on your dev machine, simply run:

dr
c

Sometimes you might need to type load after dr.