1
0
Fork 0
Bare-metal Rust on Zynq-7000
Go to file
Simon Renblad 0a91f883bc up LLVM version, remove LLVM 11 copy 2024-10-31 15:09:14 +08:00
.cargo fix xbuild target features 2024-10-31 15:09:14 +08:00
experiments fix const in arr expression 2024-10-31 15:09:09 +08:00
libasync up rust edition to 2021 2024-10-22 12:10:39 +08:00
libboard_zynq up rust edition to 2021 2024-10-22 12:10:39 +08:00
libconfig up rust-fatfs to 0.4, remove core_io 2024-10-31 15:09:14 +08:00
libcortex_a9 remove UB assert in uncached 2024-10-31 15:09:14 +08:00
libregister up rust edition to 2021 2024-10-22 12:10:39 +08:00
libsupport_zynq fix panic message 2024-10-31 15:09:14 +08:00
openocd ebaz4205 support 2024-09-30 14:08:58 +08:00
szl up rust-fatfs to 0.4, remove core_io 2024-10-31 15:09:14 +08:00
.gitignore nix flakes support (#85) 2022-01-27 16:26:33 +08:00
Cargo.lock update dependencies 2022-03-10 17:01:37 +08:00
Cargo.toml up cargo resolver 2024-10-31 15:09:14 +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
armv7-none-eabihf.json define custom target, use with cargo-xbuild 2019-08-06 22:03:04 +02:00
flake.lock up LLVM version, remove LLVM 11 copy 2024-10-31 15:09:14 +08:00
flake.nix up LLVM version, remove LLVM 11 copy 2024-10-31 15:09:14 +08:00
kasli_soc_por.py add Kasli-SoC POR control program 2021-05-29 17:43:21 +08:00
remote_run.sh remote_run.sh: clean up getopts 2020-11-18 17:45:43 +08:00

README.md

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.