#arm #driver #aarch64 #gic #interrupt-controller

no-std arm-gic

A driver for the Arm Generic Interrupt Controller version 3 or 4

1 unstable release

0.1.0 Apr 17, 2023

#830 in Embedded development

Download history 105/week @ 2024-01-05 156/week @ 2024-01-12 136/week @ 2024-01-19 57/week @ 2024-01-26 82/week @ 2024-02-02 100/week @ 2024-02-09 153/week @ 2024-02-16 178/week @ 2024-02-23 203/week @ 2024-03-01 135/week @ 2024-03-08 77/week @ 2024-03-15 120/week @ 2024-03-22 59/week @ 2024-03-29 196/week @ 2024-04-05 102/week @ 2024-04-12 148/week @ 2024-04-19

513 downloads per month
Used in libhermit-rs

MIT/Apache

27KB
427 lines

Arm Generic Interrupt Controller driver

crates.io page docs.rs page

This crate provides a Rust driver for the Arm Generic Interrupt Controller version 3 or 4 (GICv3 and GICv4).

Currently it only supports AArch64. Patches are welcome to add support for AArch32 and other GIC versions.

This is not an officially supported Google product.

License

Licensed under either of

at your option.

Contributing

If you want to contribute to the project, see details of how we accept contributions.


lib.rs:

Driver for the Arm Generic Interrupt Controller version 3 or 4, on aarch64.

This top level module contains functions that are not specific to any particular interrupt controller, as support for other GIC versions may be added in future.

Example

use arm_gic::{
    gicv3::{GicV3, IntId, SgiTarget},
    irq_enable,
};

// Base addresses of the GICv3 distributor and redistributor.
const GICD_BASE_ADDRESS: *mut u64 = 0x800_0000 as _;
const GICR_BASE_ADDRESS: *mut u64 = 0x80A_0000 as _;

// Initialise the GIC.
let mut gic = unsafe { GicV3::new(GICD_BASE_ADDRESS, GICR_BASE_ADDRESS) };
gic.setup();

// Configure an SGI and then send it to ourself.
let sgi_intid = IntId::sgi(3);
GicV3::set_priority_mask(0xff);
gic.set_interrupt_priority(sgi_intid, 0x80);
gic.enable_interrupt(sgi_intid, true);
irq_enable();
GicV3::send_sgi(
    sgi_intid,
    SgiTarget::List {
        affinity3: 0,
        affinity2: 0,
        affinity1: 0,
        target_list: 0b1,
    },
);

Dependencies

~110KB