An open API service indexing awesome lists of open source software.

https://github.com/google/arm-gic

A Rust driver for the Arm Generic Interrupt Controller version 3 or 4 (GICv3 and GICv4).
https://github.com/google/arm-gic

aarch64 arm driver gic interrupt-controller rust rust-lang

Last synced: about 1 year ago
JSON representation

A Rust driver for the Arm Generic Interrupt Controller version 3 or 4 (GICv3 and GICv4).

Awesome Lists containing this project

README

          

# Arm Generic Interrupt Controller driver

[![crates.io page](https://img.shields.io/crates/v/arm-gic.svg)](https://crates.io/crates/arm-gic)
[![docs.rs page](https://docs.rs/arm-gic/badge.svg)](https://docs.rs/arm-gic)

This crate provides Rust drivers for the Arm Generic Interrupt Controller version 2, 3 or 4 (GICv2,
GICv3 and GICv4) on aarch32 and aarch64.

Because of large technical differences between the version 2 and version 3/4 Generic Interrupt
Controllers, they have been separated in different modules. Use the one appropriate for your
hardware. The interfaces are largely compatible. Only differences when dispatching
software-generated interrupts should be considered. Look at the ARM manuals for further details.

This is not an officially supported Google product.

## License

Licensed under either of

- Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)

at your option.

## Contributing

If you want to contribute to the project, see details of
[how we accept contributions](CONTRIBUTING.md).