-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f62d1b
commit cf756f7
Showing
3 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
[package] | ||
name = "arm_gic" | ||
name = "arm_gicv2" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Yuekai Jia <equation618@gmail.com>"] | ||
description = "ARM Generic Interrupt Controller (GIC) register definitions and basic operations" | ||
description = "ARM Generic Interrupt Controller version 2 (GICv2) register definitions and basic operations" | ||
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0" | ||
homepage = "https://github.com/arceos-org/arceos" | ||
repository = "https://github.com/arceos-org/arm_gic" | ||
documentation = "https://arceos-org.github.io/arm_gic" | ||
repository = "https://github.com/arceos-org/arm_gicv2" | ||
documentation = "https://docs.rs/arm_gicv2" | ||
keywords = ["arceos", "arm", "aarch64", "gic", "interrupt-controller"] | ||
categories = ["embedded", "no-std", "hardware-support", "os"] | ||
|
||
[dependencies] | ||
tock-registers = "0.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# arm_gicv2 | ||
|
||
[![Crates.io](https://img.shields.io/crates/v/arm_gicv2)](https://crates.io/crates/arm_gicv2) | ||
[![Docs.rs](https://docs.rs/arm_gicv2/badge.svg)](https://docs.rs/arm_gicv2) | ||
[![CI](https://github.com/arceos-org/arm_gicv2/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/arceos-org/arm_gicv2/actions/workflows/ci.yml) | ||
|
||
ARM Generic Interrupt Controller version 2 (GICv2) register definitions and basic operations. | ||
|
||
The official documentation: <https://developer.arm.com/documentation/ihi0048/latest/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters