Files
zynq7000-rs/zynq7000-rt
Robin Mueller 7072588872
Some checks failed
ci / Check build (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled
minor docs improvements
2025-07-28 11:07:21 +02:00
..
2025-07-28 11:07:21 +02:00
2025-04-11 20:39:36 +02:00
2025-06-26 20:31:53 +02:00
2025-07-28 11:07:21 +02:00
2025-04-11 20:39:36 +02:00

Zynq7000 Rust Run-Time Support

Startup code and minimal runtime for the AMD Zynq7000 SoC to write bare metal Rust code. This run-time crate is strongly based on the startup code provided by AMD.

Some major differences:

  • No L2 cache initialization is performed.
  • MMU table is specified as Rust code.
  • Modification to the stack setup code, because a different linker script is used.

This crate pulls in the cortex-a-rt crate to provide ARM vectors and the linker script.

Features

  • rt is a default feature which activates the run-time.

Re-Generating the MMU table

The MMU table is a static flat map of 4096 entries for each 1 MB in the memory map. It was generated using the table-gen binary tool.

You can re-run the tool using

cargo +stable --target <hostTarget> run --bin table-gen --no-default-features --features tools