mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
rust: pci: move I/O infrastructure to separate file
Move the PCI I/O infrastructure to a separate sub-module in order to keep things organized. Signed-off-by: Danilo Krummrich <dakr@kernel.org>
This commit is contained in:
@@ -8,10 +8,8 @@ use crate::{
|
|||||||
bindings, container_of, device,
|
bindings, container_of, device,
|
||||||
device::Bound,
|
device::Bound,
|
||||||
device_id::{RawDeviceId, RawDeviceIdIndex},
|
device_id::{RawDeviceId, RawDeviceIdIndex},
|
||||||
devres::{self, Devres},
|
devres, driver,
|
||||||
driver,
|
|
||||||
error::{from_result, to_result, Result},
|
error::{from_result, to_result, Result},
|
||||||
io::{Io, IoRaw},
|
|
||||||
irq::{self, IrqRequest},
|
irq::{self, IrqRequest},
|
||||||
str::CStr,
|
str::CStr,
|
||||||
sync::aref::ARef,
|
sync::aref::ARef,
|
||||||
@@ -20,14 +18,16 @@ use crate::{
|
|||||||
};
|
};
|
||||||
use core::{
|
use core::{
|
||||||
marker::PhantomData,
|
marker::PhantomData,
|
||||||
ops::{Deref, RangeInclusive},
|
ops::RangeInclusive,
|
||||||
ptr::{addr_of_mut, NonNull},
|
ptr::{addr_of_mut, NonNull},
|
||||||
};
|
};
|
||||||
use kernel::prelude::*;
|
use kernel::prelude::*;
|
||||||
|
|
||||||
mod id;
|
mod id;
|
||||||
|
mod io;
|
||||||
|
|
||||||
pub use self::id::{Class, ClassMask, Vendor};
|
pub use self::id::{Class, ClassMask, Vendor};
|
||||||
|
pub use self::io::Bar;
|
||||||
|
|
||||||
/// IRQ type flags for PCI interrupt allocation.
|
/// IRQ type flags for PCI interrupt allocation.
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
@@ -358,112 +358,6 @@ pub struct Device<Ctx: device::DeviceContext = device::Normal>(
|
|||||||
PhantomData<Ctx>,
|
PhantomData<Ctx>,
|
||||||
);
|
);
|
||||||
|
|
||||||
/// A PCI BAR to perform I/O-Operations on.
|
|
||||||
///
|
|
||||||
/// # Invariants
|
|
||||||
///
|
|
||||||
/// `Bar` always holds an `IoRaw` inststance that holds a valid pointer to the start of the I/O
|
|
||||||
/// memory mapped PCI bar and its size.
|
|
||||||
pub struct Bar<const SIZE: usize = 0> {
|
|
||||||
pdev: ARef<Device>,
|
|
||||||
io: IoRaw<SIZE>,
|
|
||||||
num: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<const SIZE: usize> Bar<SIZE> {
|
|
||||||
fn new(pdev: &Device, num: u32, name: &CStr) -> Result<Self> {
|
|
||||||
let len = pdev.resource_len(num)?;
|
|
||||||
if len == 0 {
|
|
||||||
return Err(ENOMEM);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert to `i32`, since that's what all the C bindings use.
|
|
||||||
let num = i32::try_from(num)?;
|
|
||||||
|
|
||||||
// SAFETY:
|
|
||||||
// `pdev` is valid by the invariants of `Device`.
|
|
||||||
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
|
||||||
// `name` is always valid.
|
|
||||||
let ret = unsafe { bindings::pci_request_region(pdev.as_raw(), num, name.as_char_ptr()) };
|
|
||||||
if ret != 0 {
|
|
||||||
return Err(EBUSY);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SAFETY:
|
|
||||||
// `pdev` is valid by the invariants of `Device`.
|
|
||||||
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
|
||||||
// `name` is always valid.
|
|
||||||
let ioptr: usize = unsafe { bindings::pci_iomap(pdev.as_raw(), num, 0) } as usize;
|
|
||||||
if ioptr == 0 {
|
|
||||||
// SAFETY:
|
|
||||||
// `pdev` valid by the invariants of `Device`.
|
|
||||||
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
|
||||||
unsafe { bindings::pci_release_region(pdev.as_raw(), num) };
|
|
||||||
return Err(ENOMEM);
|
|
||||||
}
|
|
||||||
|
|
||||||
let io = match IoRaw::new(ioptr, len as usize) {
|
|
||||||
Ok(io) => io,
|
|
||||||
Err(err) => {
|
|
||||||
// SAFETY:
|
|
||||||
// `pdev` is valid by the invariants of `Device`.
|
|
||||||
// `ioptr` is guaranteed to be the start of a valid I/O mapped memory region.
|
|
||||||
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
|
||||||
unsafe { Self::do_release(pdev, ioptr, num) };
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(Bar {
|
|
||||||
pdev: pdev.into(),
|
|
||||||
io,
|
|
||||||
num,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// # Safety
|
|
||||||
///
|
|
||||||
/// `ioptr` must be a valid pointer to the memory mapped PCI bar number `num`.
|
|
||||||
unsafe fn do_release(pdev: &Device, ioptr: usize, num: i32) {
|
|
||||||
// SAFETY:
|
|
||||||
// `pdev` is valid by the invariants of `Device`.
|
|
||||||
// `ioptr` is valid by the safety requirements.
|
|
||||||
// `num` is valid by the safety requirements.
|
|
||||||
unsafe {
|
|
||||||
bindings::pci_iounmap(pdev.as_raw(), ioptr as *mut c_void);
|
|
||||||
bindings::pci_release_region(pdev.as_raw(), num);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn release(&self) {
|
|
||||||
// SAFETY: The safety requirements are guaranteed by the type invariant of `self.pdev`.
|
|
||||||
unsafe { Self::do_release(&self.pdev, self.io.addr(), self.num) };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Bar {
|
|
||||||
#[inline]
|
|
||||||
fn index_is_valid(index: u32) -> bool {
|
|
||||||
// A `struct pci_dev` owns an array of resources with at most `PCI_NUM_RESOURCES` entries.
|
|
||||||
index < bindings::PCI_NUM_RESOURCES
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<const SIZE: usize> Drop for Bar<SIZE> {
|
|
||||||
fn drop(&mut self) {
|
|
||||||
self.release();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<const SIZE: usize> Deref for Bar<SIZE> {
|
|
||||||
type Target = Io<SIZE>;
|
|
||||||
|
|
||||||
fn deref(&self) -> &Self::Target {
|
|
||||||
// SAFETY: By the type invariant of `Self`, the MMIO range in `self.io` is properly mapped.
|
|
||||||
unsafe { Io::from_raw(&self.io) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<Ctx: device::DeviceContext> Device<Ctx> {
|
impl<Ctx: device::DeviceContext> Device<Ctx> {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn as_raw(&self) -> *mut bindings::pci_dev {
|
fn as_raw(&self) -> *mut bindings::pci_dev {
|
||||||
@@ -670,25 +564,6 @@ impl Drop for IrqVectorRegistration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Device<device::Bound> {
|
impl Device<device::Bound> {
|
||||||
/// Mapps an entire PCI-BAR after performing a region-request on it. I/O operation bound checks
|
|
||||||
/// can be performed on compile time for offsets (plus the requested type size) < SIZE.
|
|
||||||
pub fn iomap_region_sized<'a, const SIZE: usize>(
|
|
||||||
&'a self,
|
|
||||||
bar: u32,
|
|
||||||
name: &'a CStr,
|
|
||||||
) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a {
|
|
||||||
Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Mapps an entire PCI-BAR after performing a region-request on it.
|
|
||||||
pub fn iomap_region<'a>(
|
|
||||||
&'a self,
|
|
||||||
bar: u32,
|
|
||||||
name: &'a CStr,
|
|
||||||
) -> impl PinInit<Devres<Bar>, Error> + 'a {
|
|
||||||
self.iomap_region_sized::<0>(bar, name)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns a [`kernel::irq::Registration`] for the given IRQ vector.
|
/// Returns a [`kernel::irq::Registration`] for the given IRQ vector.
|
||||||
pub fn request_irq<'a, T: crate::irq::Handler + 'static>(
|
pub fn request_irq<'a, T: crate::irq::Handler + 'static>(
|
||||||
&'a self,
|
&'a self,
|
||||||
|
|||||||
141
rust/kernel/pci/io.rs
Normal file
141
rust/kernel/pci/io.rs
Normal file
@@ -0,0 +1,141 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
|
//! PCI memory-mapped I/O infrastructure.
|
||||||
|
|
||||||
|
use super::Device;
|
||||||
|
use crate::{
|
||||||
|
bindings, device,
|
||||||
|
devres::Devres,
|
||||||
|
io::{Io, IoRaw},
|
||||||
|
str::CStr,
|
||||||
|
sync::aref::ARef,
|
||||||
|
};
|
||||||
|
use core::ops::Deref;
|
||||||
|
use kernel::prelude::*;
|
||||||
|
|
||||||
|
/// A PCI BAR to perform I/O-Operations on.
|
||||||
|
///
|
||||||
|
/// # Invariants
|
||||||
|
///
|
||||||
|
/// `Bar` always holds an `IoRaw` inststance that holds a valid pointer to the start of the I/O
|
||||||
|
/// memory mapped PCI bar and its size.
|
||||||
|
pub struct Bar<const SIZE: usize = 0> {
|
||||||
|
pdev: ARef<Device>,
|
||||||
|
io: IoRaw<SIZE>,
|
||||||
|
num: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<const SIZE: usize> Bar<SIZE> {
|
||||||
|
pub(super) fn new(pdev: &Device, num: u32, name: &CStr) -> Result<Self> {
|
||||||
|
let len = pdev.resource_len(num)?;
|
||||||
|
if len == 0 {
|
||||||
|
return Err(ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to `i32`, since that's what all the C bindings use.
|
||||||
|
let num = i32::try_from(num)?;
|
||||||
|
|
||||||
|
// SAFETY:
|
||||||
|
// `pdev` is valid by the invariants of `Device`.
|
||||||
|
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
||||||
|
// `name` is always valid.
|
||||||
|
let ret = unsafe { bindings::pci_request_region(pdev.as_raw(), num, name.as_char_ptr()) };
|
||||||
|
if ret != 0 {
|
||||||
|
return Err(EBUSY);
|
||||||
|
}
|
||||||
|
|
||||||
|
// SAFETY:
|
||||||
|
// `pdev` is valid by the invariants of `Device`.
|
||||||
|
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
||||||
|
// `name` is always valid.
|
||||||
|
let ioptr: usize = unsafe { bindings::pci_iomap(pdev.as_raw(), num, 0) } as usize;
|
||||||
|
if ioptr == 0 {
|
||||||
|
// SAFETY:
|
||||||
|
// `pdev` valid by the invariants of `Device`.
|
||||||
|
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
||||||
|
unsafe { bindings::pci_release_region(pdev.as_raw(), num) };
|
||||||
|
return Err(ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
|
let io = match IoRaw::new(ioptr, len as usize) {
|
||||||
|
Ok(io) => io,
|
||||||
|
Err(err) => {
|
||||||
|
// SAFETY:
|
||||||
|
// `pdev` is valid by the invariants of `Device`.
|
||||||
|
// `ioptr` is guaranteed to be the start of a valid I/O mapped memory region.
|
||||||
|
// `num` is checked for validity by a previous call to `Device::resource_len`.
|
||||||
|
unsafe { Self::do_release(pdev, ioptr, num) };
|
||||||
|
return Err(err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(Bar {
|
||||||
|
pdev: pdev.into(),
|
||||||
|
io,
|
||||||
|
num,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// `ioptr` must be a valid pointer to the memory mapped PCI bar number `num`.
|
||||||
|
unsafe fn do_release(pdev: &Device, ioptr: usize, num: i32) {
|
||||||
|
// SAFETY:
|
||||||
|
// `pdev` is valid by the invariants of `Device`.
|
||||||
|
// `ioptr` is valid by the safety requirements.
|
||||||
|
// `num` is valid by the safety requirements.
|
||||||
|
unsafe {
|
||||||
|
bindings::pci_iounmap(pdev.as_raw(), ioptr as *mut c_void);
|
||||||
|
bindings::pci_release_region(pdev.as_raw(), num);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn release(&self) {
|
||||||
|
// SAFETY: The safety requirements are guaranteed by the type invariant of `self.pdev`.
|
||||||
|
unsafe { Self::do_release(&self.pdev, self.io.addr(), self.num) };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Bar {
|
||||||
|
#[inline]
|
||||||
|
pub(super) fn index_is_valid(index: u32) -> bool {
|
||||||
|
// A `struct pci_dev` owns an array of resources with at most `PCI_NUM_RESOURCES` entries.
|
||||||
|
index < bindings::PCI_NUM_RESOURCES
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<const SIZE: usize> Drop for Bar<SIZE> {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
self.release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<const SIZE: usize> Deref for Bar<SIZE> {
|
||||||
|
type Target = Io<SIZE>;
|
||||||
|
|
||||||
|
fn deref(&self) -> &Self::Target {
|
||||||
|
// SAFETY: By the type invariant of `Self`, the MMIO range in `self.io` is properly mapped.
|
||||||
|
unsafe { Io::from_raw(&self.io) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Device<device::Bound> {
|
||||||
|
/// Mapps an entire PCI-BAR after performing a region-request on it. I/O operation bound checks
|
||||||
|
/// can be performed on compile time for offsets (plus the requested type size) < SIZE.
|
||||||
|
pub fn iomap_region_sized<'a, const SIZE: usize>(
|
||||||
|
&'a self,
|
||||||
|
bar: u32,
|
||||||
|
name: &'a CStr,
|
||||||
|
) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a {
|
||||||
|
Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Mapps an entire PCI-BAR after performing a region-request on it.
|
||||||
|
pub fn iomap_region<'a>(
|
||||||
|
&'a self,
|
||||||
|
bar: u32,
|
||||||
|
name: &'a CStr,
|
||||||
|
) -> impl PinInit<Devres<Bar>, Error> + 'a {
|
||||||
|
self.iomap_region_sized::<0>(bar, name)
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user