Bare-metal Rust on Zynq-7000
 
 
 
Go to file
Egor Savkin 755e7d6aae WIP replace crates' patch with forked fatfs
Signed-off-by: Egor Savkin <es@m-labs.hk>
2023-02-08 16:36:46 +08:00
.cargo WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
experiments WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
libasync WIP update version of Rust 2023-02-01 17:55:54 +08:00
libboard_zynq WIP update version of Rust 2023-02-01 17:55:54 +08:00
libconfig WIP replace crates' patch with forked fatfs 2023-02-08 16:36:46 +08:00
libcortex_a9 WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
libregister WIP update version of Rust 2023-02-01 17:55:54 +08:00
libsupport_zynq WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
openocd openocd: moved common code from target files 2022-03-10 17:05:25 +08:00
szl WIP update version of Rust 2023-02-01 17:55:54 +08:00
.gitignore nix flakes support (#85) 2022-01-27 16:26:33 +08:00
Cargo.lock WIP replace crates' patch with forked fatfs 2023-02-08 16:36:46 +08:00
Cargo.toml WIP replace crates' patch with forked fatfs 2023-02-08 16:36:46 +08:00
LICENSE LGPLv3 2021-04-06 16:46:38 +08:00
README.md WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
armv7a-none-eabihf.json WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
flake.lock flake: NixOS 22.11, update dependencies 2022-11-30 22:29:58 +08:00
flake.nix WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +08:00
fsbl.patch nix flakes support (#85) 2022-01-27 16:26:33 +08:00
kasli_soc_por.py add Kasli-SoC POR control program 2021-05-29 17:43:21 +08:00
remote_run.sh WIP successful build wit updated Rust toolchain 2023-02-08 12:45:35 +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/armv7a-none-eabi/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.