Skip to content

gz/rust-uio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

About

Linux UIO Library in Rust

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages