Bare-metal Rust on Zynq-7000
Go to file
2025-01-24 18:19:43 +08:00
.cargo various, split later 2025-01-24 18:19:43 +08:00
experiments various, split later 2025-01-24 18:19:43 +08:00
libasync wip 2025-01-24 18:19:07 +08:00
libboard_zynq various, split later 2025-01-24 18:19:43 +08:00
libconfig various, split later 2025-01-24 18:19:43 +08:00
libcortex_a9 silence static mut ref warns 2025-01-24 18:19:43 +08:00
libregister wip 2025-01-24 18:19:07 +08:00
libsupport_zynq silence static mut ref warns 2025-01-24 18:19:43 +08:00
openocd ebaz4205 support 2024-09-30 14:08:58 +08:00
szl replace explicit cast with addr_of/addr_of_mut 2025-01-24 18:19:43 +08:00
.gitignore nix flakes support (#85) 2022-01-27 16:26:33 +08:00
armv7-none-eabihf.json various, split later 2025-01-24 18:19:43 +08:00
Cargo.lock wip 2025-01-24 18:19:07 +08:00
Cargo.toml various, split later 2025-01-24 18:19:43 +08:00
flake.lock update dependencies 2024-12-20 12:17:01 +08:00
flake.nix various, split later 2025-01-24 18:19:43 +08:00
kasli_soc_por.py add Kasli-SoC POR control program 2021-05-29 17:43:21 +08:00
LICENSE LGPLv3 2021-04-06 16:46:38 +08:00
README.md update copyright year 2022-01-27 18:00:24 +08:00
remote_run.sh remote_run.sh: clean up getopts 2020-11-18 17:45:43 +08:00

Bare-metal Rust on Zynq-7000

Supported features:

  • Clocking setup
  • UART
  • SDRAM setup
  • Ethernet with smoltcp and async-await on TCP sockets
  • SD card
  • PL programming and startup
  • Pure Rust SZL first-stage bootloader, with SD boot and netboot
  • Control of second CPU core and message passing, with async-await support

Supported boards:

  • Kasli-SoC
  • ZC706
  • Red Pitaya
  • Cora Z7-10 (seems to also run on Cora Z7-07S, including dual-core support)

Build

Zynq-rs is packaged using the Nix Flakes system. Install Nix 2.4+ and enable flakes by adding experimental-features = nix-command flakes to nix.conf (e.g. ~/.config/nix/nix.conf).

You can build SZL or experiments crate for the platform of your choice by using nix build command, e.g.

nix build .#coraz7-experiments

Alternatively, you can still use cargo xbuild within nix develop shell.

nix develop
cargo xbuild --release -p experiments

Currently the ELF output is placed at target/armv7-none-eabihf/release/experiments, or result/experiments.elf for Nix Flakes build.

Debug

Running on the ZC706

nix develop
cargo xbuild --release -p experiments
cd openocd
openocd -f zc706.cfg

Running on the Cora Z7-10

nix develop
cargo xbuild --release -p experiments --no-default-features --features=target_coraz7
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"

License

Copyright (C) 2019-2022 M-Labs Limited. Released under the GNU LGPL v3. See the LICENSE file for details.