e1000-driver

Crates.ioe1000-driver
lib.rse1000-driver
version0.1.0
sourcesrc
created_at2023-02-24 14:55:10.239548
updated_at2023-02-24 14:55:10.239548
descriptionE1000 driver in Rust for the Intel 82540EP/EM Gigabit Ethernet.
homepage
repositoryhttps://github.com/elliott10/e1000-driver.git
max_upload_size
id793675
size44,998
Luoyuan Xiao (elliott10)

documentation

README

E1000 Driver

E1000 driver in Rust for the Intel 82540EP/EM Gigabit Ethernet.

Support features

  • E1000 driver for RISCV on Qemu is supported
  • Initialize simple PCI-Express for e1000 device
  • Implement the e1000 driver as a linux driver module
  • Todo: networking protocol support: IP, ARP, UDP

Quick start on bare metal OS

Initialize PCI and E1000 driver

pub struct Kernfn;
impl e1000_driver::e1000::KernelFunc for Kernfn { ... }

e1000_driver::pci::pci_init();

let mut e1000_device = e1000_driver::e1000::E1000Device::<Kernfn>::new(e1000_driver::pci::E1000_REGS as usize).unwrap();

Sending network packets

e1000_device.e1000_transmit(&frame);

Receiving network packets

let rx_buf = e1000_device.e1000_recv();

Kernel module on Linux

cd src/linux
make ARCH=arch KDIR=/path/to/linux
# e.g. make ARCH=riscv KDIR=/home/rust/linux

Reference

Commit count: 17

cargo fmt