6 releases (3 breaking)
Uses old Rust 2015
0.4.0 | Oct 8, 2024 |
---|---|
0.3.0 | Sep 6, 2024 |
0.2.1 | Jul 7, 2023 |
0.2.0 | Mar 7, 2019 |
0.1.0 | May 27, 2016 |
#205 in Hardware support
3,607 downloads per month
16KB
305 lines
Linux UIO library for Rust
A thin abstraction library for writing user-space drivers in Linux by using the UIO facility (https://www.kernel.org/doc/html/latest/driver-api/uio-howto.html).
In order to use this library, you'll need to make sure your device uses the Linux UIO driver module. For example, the following
sample commands unload the ahci driver in Linux and use the uio_pci_generic
module for the SSD disk for the PCI
device with vendor 0x8086
and device id 0x1d02
. (Note: Dangerous, don't do this if you don't know what you're doing).
$ modprobe -r ahci
$ sudo modprobe uio
$ sudo modprobe uio_pci_generic
$ echo "0x8086 0x1d02" > /sys/bus/pci/drivers/uio_pci_generic/new_id
$ lspci -v -d :0x1d02 | grep "Kernel driver in use"
Afterwards you should have one or more uio devices available in /dev/uio*
which you can use to instantiate the
UioDevice struct:
extern crate uio;
use uio::*;
pub fn main() {
let uio_num = 1; // /dev/uio1
let dev = UioDevice::new(uio_num).unwrap();
let bar = dev.map_resource(5).unwrap();
}
Resources
For more information about UIO check the following links:
- https://lwn.net/Articles/232575/
- http://alvarom.com/2014/12/17/linux-user-space-drivers-with-interrupts/
- http://lxr.free-electrons.com/source/drivers/uio/uio_cif.c
- https://www.kernel.org/doc/html/latest/driver-api/uio-howto.html
- http://lxr.free-electrons.com/source/drivers/uio/uio_dmem_genirq.c
- http://www.osadl.org/projects/downloads/UIO/user/
- http://dpdk.org/browse/dpdk/tree/tools/dpdk_nic_bind.py
Dependencies
~2MB
~36K SLoC