7 releases

new 0.3.6 Apr 16, 2026
0.3.5 Apr 16, 2026
0.1.1 Nov 8, 2024

#298 in Embedded development

Download history 18/week @ 2025-12-25 13/week @ 2026-01-01 8/week @ 2026-01-08 9/week @ 2026-01-15 9/week @ 2026-01-22 137/week @ 2026-01-29 66/week @ 2026-02-05 6/week @ 2026-02-12 81/week @ 2026-02-19 86/week @ 2026-02-26 111/week @ 2026-03-05 129/week @ 2026-03-12 87/week @ 2026-03-19 27/week @ 2026-03-26 7/week @ 2026-04-02 32/week @ 2026-04-09

157 downloads per month
Used in 4 crates (via arm_vgic)

Apache-2.0

485KB
10K SLoC

aarch64_sysreg

Address translation of system registers

Crates.io Docs.rs Rust License

English | 中文

Introduction

aarch64_sysreg provides Address translation of system registers. It is maintained as part of the TGOSKits component set and is intended for Rust projects that integrate with ArceOS, AxVisor, or related low-level systems software.

Quick Start

Installation

Add this crate to your Cargo.toml:

[dependencies]
aarch64_sysreg = "0.3.1"

Run Check and Test

# Enter the crate directory
cd components/aarch64_sysreg

# Format code
cargo fmt --all

# Run clippy
cargo clippy --all-targets --all-features

# Run tests
cargo test --all-features

# Build documentation
cargo doc --no-deps

Integration

Example

use aarch64_sysreg as _;

fn main() {
    // Integrate `aarch64_sysreg` into your project here.
}

Documentation

Generate and view API documentation:

cargo doc --no-deps --open

Online documentation: docs.rs/aarch64_sysreg

Contributing

  1. Fork the repository and create a branch
  2. Run local format and checks
  3. Run local tests relevant to this crate
  4. Submit a PR and ensure CI passes

License

Licensed under the Apache License, Version 2.0. See LICENSE for details.

No runtime deps