Bare-metal Rust on the Xilinx Zynq ZC706 devkit
 
 
 
 
 
 
Go to file
Astro 143bb56ccb main: setup smoltcp
still panics, leading to a DataAbort
2019-08-07 20:38:30 +02:00
.cargo define custom target, use with cargo-xbuild 2019-08-06 22:03:04 +02:00
openocd working openocd scripts for zc706 and cora-z7-10 2019-06-29 02:41:36 +02:00
src main: setup smoltcp 2019-08-07 20:38:30 +02:00
Cargo.lock update compiler-builtins 2019-08-06 14:15:40 +02:00
Cargo.toml eth: add smoltcp support 2019-08-07 20:38:29 +02:00
README.md working openocd scripts for zc706 and cora-z7-10 2019-06-29 02:41:36 +02:00
armv7-none-eabihf.json define custom target, use with cargo-xbuild 2019-08-06 22:03:04 +02:00
build.rs PoC: boot, uart output in qemu 2019-05-05 14:56:23 +02:00
default.nix define custom target, use with cargo-xbuild 2019-08-06 22:03:04 +02:00
link.x link.x: rm unneeded ALIGN(4) 2019-08-07 00:26:46 +02:00
qemu.gdb PoC: boot, uart output in qemu 2019-05-05 14:56:23 +02:00
runner.sh PoC: boot, uart output in qemu 2019-05-05 14:56:23 +02:00
shell.nix define custom target, use with cargo-xbuild 2019-08-06 22:03:04 +02:00

README.md

Build

nix-shell --command "cargo build --release"

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 build --release"
openocd -f openocd/zc706.cfg

Running on the Cora Z7-10

nix-shell --command "cargo build --release --no-default-features --features=target_cora_z7_10"
openocd -f openocd/cora-z7-10.cfg