From: Fiona Behrens <m...@kloenk.dev> Replace the Io struct with a new MMIo struct that uses the different traits (`IoAccess`, `IoAccess64`, `IoAccessRelaxed` and `IoAccess64Relaxed). This allows to later implement PortIo and a generic Io framework.
Signed-off-by: Fiona Behrens <m...@kloenk.dev> Co-developed-by: Andrew Ballance <andrewjballa...@gmail.com> Signed-off-by: Andrew Ballance <andrewjballa...@gmail.com> --- rust/kernel/io.rs | 443 +++++++++++++++++++++++++++------------------- 1 file changed, 259 insertions(+), 184 deletions(-) diff --git a/rust/kernel/io.rs b/rust/kernel/io.rs index 72d80a6f131e..19bbf802027c 100644 --- a/rust/kernel/io.rs +++ b/rust/kernel/io.rs @@ -7,6 +7,211 @@ use crate::error::{code::EINVAL, Result}; use crate::{bindings, build_assert}; +/// Private macro to define the [`IoAccess`] functions. +macro_rules! define_io_access_function { + (@read_derived $(#[$attr:meta])* $name_unchecked:ident, $vis:vis $name:ident, $try_vis:vis $try_name:ident, $type_name:ty) => { + /// Read data from a give offset known at compile time. + /// + /// Bound checks are perfomed on compile time, hence if the offset is not known at compile + /// time, the build will fail. + $(#[$attr])* + #[inline] + $vis fn $name(&self, offset: usize) -> $type_name { + build_assert!(offset_valid::<$type_name>(offset, SIZE)); + + // SAFETY: offset checked to be valid above. + unsafe { self.$name_unchecked(offset) } + } + + /// Read data from a given offset. + /// + /// Bound checks are performed on runtime, it fails if the offset (plus type size) is + /// out of bounds. + $(#[$attr])* + #[inline] + $try_vis fn $try_name(&self, offset: usize) -> Result<$type_name> { + if !(offset_valid::<$type_name>(offset, self.maxsize())) { + return Err(EINVAL); + } + + // SAFETY: offset checked to be valid above. + Ok(unsafe { self.$name_unchecked(offset) }) + } + }; + (@read $(#[$attr:meta])* $name_unchecked:ident, $name:ident, $try_name:ident, $type_name:ty) => { + /// Read data from a given offset without doing any bound checks. + /// The offset is relative to the base address of Self. + /// + /// # Safety + /// + /// The offset has to be valid for self. + $(#[$attr])* + unsafe fn $name_unchecked(&self, offset: usize) -> $type_name; + + define_io_access_function!(@read_derived $(#[$attr])* $name_unchecked, $name, $try_name, $type_name); + }; + (@read $($(#[$attr:meta])* $name_unchecked:ident, $name:ident, $try_name:ident, $type_name:ty;)+) => { + $( + define_io_access_function!(@read $(#[$attr])* $name_unchecked, $name, $try_name, $type_name); + )* + }; + (@write_derived $(#[$attr:meta])* $name_unchecked:ident, $vis:vis $name:ident, $try_vis:vis $try_name:ident, $type_name:ty) => { + /// Write data to a given offset known at compile time. + /// Bound checks are performed on compile time, hence if the offset is not known at compile + /// time, the build will fail. + $(#[$attr])* + #[inline] + $vis fn $name(&self, value: $type_name, offset: usize) { + build_assert!(offset_valid::<$type_name>(offset, SIZE)); + + // SAFETY: offset checked to be valid above. + unsafe { self.$name_unchecked(value, offset) } + } + + /// Write data to a given offset. + /// + /// Bound checks are performed on runtime, it fails if the offset (plus the type size) is + /// out of bounds. + $(#[$attr])* + #[inline] + $try_vis fn $try_name(&self, value: $type_name, offset: usize) -> Result { + if !(offset_valid::<$type_name>(offset, self.maxsize())) { + return Err(EINVAL); + } + + // SAFETY: offset checked to be valid above. + Ok(unsafe { self.$name_unchecked(value, offset) }) + } + }; + (@write $(#[$attr:meta])* $name_unchecked:ident, $name:ident, $try_name:ident, $type_name:ty) => { + /// Write data to a given offset without doing any bound checks. + /// The offset is relative to the base address of self. + /// + /// # Safety + /// + /// The offset has to be valid for Self. + $(#[$attr])* + unsafe fn $name_unchecked(&self, value: $type_name, offset: usize); + + define_io_access_function!(@write_derived $(#[$attr])* $name_unchecked, $name, $try_name, $type_name); + }; + (@write $($(#[$attr:meta])* $name_unchecked:ident, $name:ident, $try_name:ident, $type_name:ty;)+) => { + $( + define_io_access_function!(@write $(#[$attr])* $name_unchecked, $name, $try_name, $type_name); + )* + }; +} + +/// Private macro to generate accessor functions that call the correct C functions given as `fn_c`. +/// +/// This Takes either `@read` or `@write` to generate a single read or write accessor function. +/// +/// This also can take a list of read write pairs to generate both at the same time. +macro_rules! impl_accessor_fn { + (@read $(#[$attr:meta])* $vis:vis $fn_rust:ident, $fn_c:ident, $type_name:ty) => { + $(#[$attr])* + $vis unsafe fn $fn_rust(&self, offset: usize) -> $type_name { + // SAFETY: by the safety requirement of the function `self.addr() + offset` is valid to read + // TODO: once MSRV is >= 1.79.0 replace `+` with `unchecked_add` + unsafe { bindings::$fn_c((self.addr() + offset) as _) as _ } + } + }; + (@write $(#[$attr:meta])* $vis:vis $fn_rust:ident, $fn_c:ident, $type_name:ty) => { + $(#[$attr])* + $vis unsafe fn $fn_rust(&self, value: $type_name, offset: usize) { + // SAFETY: + // by the safety requirement of the function `self.addr() + offset` is valid to write + // TODO: once MSRV is >= 1.79.0 replace `+` with `unchecked_add` + unsafe { bindings::$fn_c(value, (self.addr() + offset) as _) as _ } + } + }; + ( + $( + $(#[$attr:meta])* + $vis_read:vis $fn_rust_read:ident, $fn_c_read:ident, + $vis_write:vis $fn_rust_write:ident, $fn_c_write:ident, + $type_name:ty $(;)? + )+ + ) => { + $( + impl_accessor_fn!(@read $(#[$attr])* $vis_read $fn_rust_read, $fn_c_read, $type_name); + impl_accessor_fn!(@write $(#[$attr])* $vis_write $fn_rust_write, $fn_c_write, $type_name); + )+ + }; +} + +/// Check if the offset is valid to still support the type U in the given size +const fn offset_valid<U>(offset: usize, size: usize) -> bool { + let type_size = core::mem::size_of::<U>(); + if let Some(end) = offset.checked_add(type_size) { + end <= size && offset % type_size == 0 + } else { + false + } +} + +/// Io Access functions. +/// +/// # Safety +/// +/// `SIZE` and `maxsize()` has to always be valid to add to the base address. +pub unsafe trait IoAccess<const SIZE: usize = 0> { + /// Returns the maximum size of the accessed IO area. + fn maxsize(&self) -> usize; + + /// Returns the base address of the accessed IO area. + fn addr(&self) -> usize; + + define_io_access_function!(@read + read8_unchecked, read8, try_read8, u8; + read16_unchecked, read16, try_read16, u16; + read32_unchecked, read32, try_read32, u32; + ); + + define_io_access_function!(@write + write8_unchecked, write8, try_write8, u8; + write16_unchecked, write16, try_write16, u16; + write32_unchecked, write32, try_write32, u32; + ); +} + +/// Extending trait of [`IoAccess`] offering 64 bit functions. +#[cfg(CONFIG_64BIT)] +pub trait IoAccess64<const SIZE: usize = 0>: IoAccess<SIZE> { + define_io_access_function!(@read read64_unchecked, read64, try_read64, u64); + define_io_access_function!(@write write64_unchecked, write64, try_write64, u64); +} + +/// Io Relaxed Access functions. +/// +/// Similar to [`IoAccess`] but using relaxed memory boundries. For [`PortIo`] (when [`Io`] +/// is a PortIo address) this just calls the functions from [`IoAccess`]. +pub trait IoAccessRelaxed<const SIZE: usize = 0>: IoAccess<SIZE> { + define_io_access_function!(@read + read8_relaxed_unchecked, read8_relaxed, try_read8_relaxed, u8; + read16_relaxed_unchecked, read16_relaxed, try_read16_relaxed, u16; + read32_relaxed_unchecked, read32_relaxed, try_read32_relaxed, u32; + ); + + define_io_access_function!(@write + write8_relaxed_unchecked, write8_relaxed, try_write8_relaxed, u8; + write16_relaxed_unchecked, write16_relaxed, try_write16_relaxed, u16; + write32_relaxed_unchecked, write32_relaxed, try_write32_relaxed, u32; + ); +} + +/// Extending trait of [`IoAccessRelaxed`] offering 64 bit functions. +#[cfg(CONFIG_64BIT)] +pub trait IoAccess64Relaxed<const SIZE: usize = 0>: IoAccess<SIZE> { + define_io_access_function!(@read + read64_relaxed_unchecked, read64_relaxed, try_read64_relaxed, u64; + ); + + define_io_access_function!(@write + write64_relaxed_unchecked, write64_relaxed, try_write64_relaxed, u64; + ); +} + /// Raw representation of an MMIO region. /// /// By itself, the existence of an instance of this structure does not provide any guarantees that @@ -43,218 +248,88 @@ pub fn maxsize(&self) -> usize { } } -/// IO-mapped memory, starting at the base address @addr and spanning @maxlen bytes. +/// IO-mapped memory, starting at the base address [`addr`] and spanning [`maxsize`] bytes. /// /// The creator (usually a subsystem / bus such as PCI) is responsible for creating the -/// mapping, performing an additional region request etc. -/// -/// # Invariant -/// -/// `addr` is the start and `maxsize` the length of valid I/O mapped memory region of size -/// `maxsize`. -/// -/// # Examples -/// -/// ```no_run -/// # use kernel::{bindings, io::{Io, IoRaw}}; -/// # use core::ops::Deref; +/// mapping, performing an additional region request, etc. /// -/// // See also [`pci::Bar`] for a real example. -/// struct IoMem<const SIZE: usize>(IoRaw<SIZE>); +/// # Invariants /// -/// impl<const SIZE: usize> IoMem<SIZE> { -/// /// # Safety -/// /// -/// /// [`paddr`, `paddr` + `SIZE`) must be a valid MMIO region that is mappable into the CPUs -/// /// virtual address space. -/// unsafe fn new(paddr: usize) -> Result<Self>{ -/// // SAFETY: By the safety requirements of this function [`paddr`, `paddr` + `SIZE`) is -/// // valid for `ioremap`. -/// let addr = unsafe { bindings::ioremap(paddr as _, SIZE as _) }; -/// if addr.is_null() { -/// return Err(ENOMEM); -/// } +/// [`addr`] is the start and [`maxsize`] the length of valid I/O mapped memory region of +/// size [`maxsize`]. /// -/// Ok(IoMem(IoRaw::new(addr as _, SIZE)?)) -/// } -/// } +/// [`addr`] is valid to access with the C [`read`]/[`write`] family of functions. /// -/// impl<const SIZE: usize> Drop for IoMem<SIZE> { -/// fn drop(&mut self) { -/// // SAFETY: `self.0.addr()` is guaranteed to be properly mapped by `Self::new`. -/// unsafe { bindings::iounmap(self.0.addr() as _); }; -/// } -/// } -/// -/// impl<const SIZE: usize> Deref for IoMem<SIZE> { -/// type Target = Io<SIZE>; -/// -/// fn deref(&self) -> &Self::Target { -/// // SAFETY: The memory range stored in `self` has been properly mapped in `Self::new`. -/// unsafe { Io::from_raw(&self.0) } -/// } -/// } -/// -///# fn no_run() -> Result<(), Error> { -/// // SAFETY: Invalid usage for example purposes. -/// let iomem = unsafe { IoMem::<{ core::mem::size_of::<u32>() }>::new(0xBAAAAAAD)? }; -/// iomem.write32(0x42, 0x0); -/// assert!(iomem.try_write32(0x42, 0x0).is_ok()); -/// assert!(iomem.try_write32(0x42, 0x4).is_err()); -/// # Ok(()) -/// # } -/// ``` +/// [`addr`]: IoAccess::addr +/// [`maxsize`]: IoAccess::maxsize +/// [`read`]: https://docs.kernel.org/driver-api/device-io.html#differences-between-i-o-access-functions +/// [`write`]: https://docs.kernel.org/driver-api/device-io.html#differences-between-i-o-access-functions #[repr(transparent)] -pub struct Io<const SIZE: usize = 0>(IoRaw<SIZE>); - -macro_rules! define_read { - ($(#[$attr:meta])* $name:ident, $try_name:ident, $c_fn:ident -> $type_name:ty) => { - /// Read IO data from a given offset known at compile time. - /// - /// Bound checks are performed on compile time, hence if the offset is not known at compile - /// time, the build will fail. - $(#[$attr])* - #[inline] - pub fn $name(&self, offset: usize) -> $type_name { - let addr = self.io_addr_assert::<$type_name>(offset); - - // SAFETY: By the type invariant `addr` is a valid address for MMIO operations. - unsafe { bindings::$c_fn(addr as _) } - } - - /// Read IO data from a given offset. - /// - /// Bound checks are performed on runtime, it fails if the offset (plus the type size) is - /// out of bounds. - $(#[$attr])* - pub fn $try_name(&self, offset: usize) -> Result<$type_name> { - let addr = self.io_addr::<$type_name>(offset)?; - - // SAFETY: By the type invariant `addr` is a valid address for MMIO operations. - Ok(unsafe { bindings::$c_fn(addr as _) }) - } - }; -} - -macro_rules! define_write { - ($(#[$attr:meta])* $name:ident, $try_name:ident, $c_fn:ident <- $type_name:ty) => { - /// Write IO data from a given offset known at compile time. - /// - /// Bound checks are performed on compile time, hence if the offset is not known at compile - /// time, the build will fail. - $(#[$attr])* - #[inline] - pub fn $name(&self, value: $type_name, offset: usize) { - let addr = self.io_addr_assert::<$type_name>(offset); - - // SAFETY: By the type invariant `addr` is a valid address for MMIO operations. - unsafe { bindings::$c_fn(value, addr as _, ) } - } +pub struct MMIo<const SIZE: usize = 0>(IoRaw<SIZE>); - /// Write IO data from a given offset. - /// - /// Bound checks are performed on runtime, it fails if the offset (plus the type size) is - /// out of bounds. - $(#[$attr])* - pub fn $try_name(&self, value: $type_name, offset: usize) -> Result { - let addr = self.io_addr::<$type_name>(offset)?; - - // SAFETY: By the type invariant `addr` is a valid address for MMIO operations. - unsafe { bindings::$c_fn(value, addr as _) } - Ok(()) - } - }; -} - -impl<const SIZE: usize> Io<SIZE> { - /// Converts an `IoRaw` into an `Io` instance, providing the accessors to the MMIO mapping. +impl<const SIZE: usize> MMIo<SIZE> { + /// Convert a [`IoRaw`] into an [`MMIo`] instance, providing the accessors to the MMIO mapping. /// /// # Safety /// - /// Callers must ensure that `addr` is the start of a valid I/O mapped memory region of size - /// `maxsize`. - pub unsafe fn from_raw(raw: &IoRaw<SIZE>) -> &Self { - // SAFETY: `Io` is a transparent wrapper around `IoRaw`. - unsafe { &*core::ptr::from_ref(raw).cast() } - } - - /// Returns the base address of this mapping. + /// Callers must ensure that `addr` is the start of a valid I/O mapped memory region of + /// size `maxsize`. #[inline] - pub fn addr(&self) -> usize { - self.0.addr() - } - - /// Returns the maximum size of this mapping. - #[inline] - pub fn maxsize(&self) -> usize { - self.0.maxsize() + pub unsafe fn from_raw(raw: IoRaw<SIZE>) -> Self { + Self(raw) } + /// Convert a ref to [`IoRaw`] into an [`MMIo`] instance, providing the accessors to the + /// MMIo mapping. + /// + /// # Safety + /// + /// Callers must ensure that `addr` is the start of a valid I/O mapped memory region of + /// size `maxsize`. #[inline] - const fn offset_valid<U>(offset: usize, size: usize) -> bool { - let type_size = core::mem::size_of::<U>(); - if let Some(end) = offset.checked_add(type_size) { - end <= size && offset % type_size == 0 - } else { - false - } + pub unsafe fn from_raw_ref(raw: &IoRaw<SIZE>) -> &Self { + // SAFETY: `MMIo` is a transparent wrapper around `IoRaw`. + unsafe { &*core::ptr::from_ref(raw).cast() } } +} +// SAFETY: as per invariant `raw` is valid +unsafe impl<const SIZE: usize> IoAccess<SIZE> for MMIo<SIZE> { #[inline] - fn io_addr<U>(&self, offset: usize) -> Result<usize> { - if !Self::offset_valid::<U>(offset, self.maxsize()) { - return Err(EINVAL); - } - - // Probably no need to check, since the safety requirements of `Self::new` guarantee that - // this can't overflow. - self.addr().checked_add(offset).ok_or(EINVAL) + fn maxsize(&self) -> usize { + self.0.maxsize() } #[inline] - fn io_addr_assert<U>(&self, offset: usize) -> usize { - build_assert!(Self::offset_valid::<U>(offset, SIZE)); - - self.addr() + offset + fn addr(&self) -> usize { + self.0.addr() } - define_read!(read8, try_read8, readb -> u8); - define_read!(read16, try_read16, readw -> u16); - define_read!(read32, try_read32, readl -> u32); - define_read!( - #[cfg(CONFIG_64BIT)] - read64, - try_read64, - readq -> u64 + impl_accessor_fn!( + read8_unchecked, readb, write8_unchecked, writeb, u8; + read16_unchecked, readw, write16_unchecked, writew, u16; + read32_unchecked, readl, write32_unchecked, writel, u32; ); +} - define_read!(read8_relaxed, try_read8_relaxed, readb_relaxed -> u8); - define_read!(read16_relaxed, try_read16_relaxed, readw_relaxed -> u16); - define_read!(read32_relaxed, try_read32_relaxed, readl_relaxed -> u32); - define_read!( - #[cfg(CONFIG_64BIT)] - read64_relaxed, - try_read64_relaxed, - readq_relaxed -> u64 +#[cfg(CONFIG_64BIT)] +impl<const SIZE: usize> IoAccess64<SIZE> for MMIo<SIZE> { + impl_accessor_fn!( + read64_unchecked, readq, write64_unchecked, writeq, u64; ); +} - define_write!(write8, try_write8, writeb <- u8); - define_write!(write16, try_write16, writew <- u16); - define_write!(write32, try_write32, writel <- u32); - define_write!( - #[cfg(CONFIG_64BIT)] - write64, - try_write64, - writeq <- u64 +impl<const SIZE: usize> IoAccessRelaxed<SIZE> for MMIo<SIZE> { + impl_accessor_fn!( + read8_relaxed_unchecked, readb_relaxed, write8_relaxed_unchecked, writeb_relaxed, u8; + read16_relaxed_unchecked, readw_relaxed, write16_relaxed_unchecked, writew_relaxed, u16; + read32_relaxed_unchecked, readl_relaxed, write32_relaxed_unchecked, writel_relaxed, u32; ); +} - define_write!(write8_relaxed, try_write8_relaxed, writeb_relaxed <- u8); - define_write!(write16_relaxed, try_write16_relaxed, writew_relaxed <- u16); - define_write!(write32_relaxed, try_write32_relaxed, writel_relaxed <- u32); - define_write!( - #[cfg(CONFIG_64BIT)] - write64_relaxed, - try_write64_relaxed, - writeq_relaxed <- u64 +#[cfg(CONFIG_64BIT)] +impl<const SIZE: usize> IoAccess64Relaxed<SIZE> for MMIo<SIZE> { + impl_accessor_fn!( + read64_relaxed_unchecked, readq_relaxed, write64_relaxed_unchecked, writeq_relaxed, u64; ); } -- 2.49.0