kernel::device

Struct Device

Source
pub struct Device(/* private fields */);
Expand description

A reference-counted device.

This structure represents the Rust abstraction for a C struct device. This implementation abstracts the usage of an already existing C struct device within Rust code that we get passed from the C side.

An instance of this abstraction can be obtained temporarily or permanent.

A temporary one is bound to the lifetime of the C struct device pointer used for creation. A permanent instance is always reference-counted and hence not restricted by any lifetime boundaries.

For subsystems it is recommended to create a permanent instance to wrap into a subsystem specific device structure (e.g. pci::Device). This is useful for passing it to drivers in T::probe(), such that a driver can store the ARef<Device> (equivalent to storing a struct device pointer in a C driver) for arbitrary purposes, e.g. allocating DMA coherent memory.

§Invariants

A Device instance represents a valid struct device created by the C portion of the kernel.

Instances of this type are always reference-counted, that is, a call to get_device ensures that the allocation remains valid at least until the matching call to put_device.

bindings::device::release is valid to be called from any thread, hence ARef<Device> can be dropped from any thread.

Implementations§

Source§

impl Device

Source

pub unsafe fn get_device(ptr: *mut device) -> ARef<Self>

Creates a new reference-counted abstraction instance of an existing struct device pointer.

§Safety

Callers must ensure that ptr is valid, non-null, and has a non-zero reference count, i.e. it must be ensured that the reference count of the C struct device ptr points to can’t drop to zero, for the duration of this function call.

It must also be ensured that bindings::device::release can be called from any thread. While not officially documented, this should be the case for any struct device.

Source

pub unsafe fn as_ref<'a>(ptr: *mut device) -> &'a Self

Convert a raw C struct device pointer to a &'a Device.

§Safety

Callers must ensure that ptr is valid, non-null, and has a non-zero reference count, i.e. it must be ensured that the reference count of the C struct device ptr points to can’t drop to zero, for the duration of this function call and the entire duration when the returned reference exists.

Source

pub fn pr_emerg(&self, args: Arguments<'_>)

Prints an emergency-level message (level 0) prefixed with device information.

More details are available from dev_emerg.

Source

pub fn pr_alert(&self, args: Arguments<'_>)

Prints an alert-level message (level 1) prefixed with device information.

More details are available from dev_alert.

Source

pub fn pr_crit(&self, args: Arguments<'_>)

Prints a critical-level message (level 2) prefixed with device information.

More details are available from dev_crit.

Source

pub fn pr_err(&self, args: Arguments<'_>)

Prints an error-level message (level 3) prefixed with device information.

More details are available from dev_err.

Source

pub fn pr_warn(&self, args: Arguments<'_>)

Prints a warning-level message (level 4) prefixed with device information.

More details are available from dev_warn.

Source

pub fn pr_notice(&self, args: Arguments<'_>)

Prints a notice-level message (level 5) prefixed with device information.

More details are available from dev_notice.

Source

pub fn pr_info(&self, args: Arguments<'_>)

Prints an info-level message (level 6) prefixed with device information.

More details are available from dev_info.

Source

pub fn pr_dbg(&self, args: Arguments<'_>)

Prints a debug-level message (level 7) prefixed with device information.

More details are available from dev_dbg.

Trait Implementations§

Source§

impl AlwaysRefCounted for Device

Source§

fn inc_ref(&self)

Increments the reference count on the object.
Source§

unsafe fn dec_ref(obj: NonNull<Self>)

Decrements the reference count on the object. Read more
Source§

impl Send for Device

Source§

impl Sync for Device

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, E> Init<T, E> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, E> PinInit<T, E> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.