atsamd51g

Struct Sdhc0

Source
pub struct Sdhc0 { /* private fields */ }
Expand description

SD/MMC Host Controller

Implementations§

Source§

impl Sdhc0

Source

pub const PTR: *const RegisterBlock = {0x45000000 as *const sdhc0::RegisterBlock}

Pointer to the register block

Source

pub const fn ptr() -> *const RegisterBlock

Return the pointer to the register block

Source

pub unsafe fn steal() -> Self

Steal an instance of this peripheral

§Safety

Ensure that the new instance of the peripheral cannot be used in a way that may race with any existing instances, for example by only accessing read-only or write-only registers, or by consuming the original peripheral and using critical sections to coordinate access between multiple new instances.

Additionally, other software such as HALs may rely on only one peripheral instance existing to ensure memory safety; ensure no stolen instances are passed to such software.

Methods from Deref<Target = RegisterBlock>§

Source

pub fn ssar_cmd23_mode(&self) -> &SsarCmd23Mode

0x00 - SDMA System Address / Argument 2

Source

pub fn ssar(&self) -> &Ssar

0x00 - SDMA System Address / Argument 2

Source

pub fn bsr(&self) -> &Bsr

0x04 - Block Size

Source

pub fn bcr(&self) -> &Bcr

0x06 - Block Count

Source

pub fn arg1r(&self) -> &Arg1r

0x08 - Argument 1

Source

pub fn tmr(&self) -> &Tmr

0x0c - Transfer Mode

Source

pub fn cr(&self) -> &Cr

0x0e - Command

Source

pub fn rr(&self, n: usize) -> &Rr

0x10..0x20 - Response

Source

pub fn rr_iter(&self) -> impl Iterator<Item = &Rr>

Iterator for array of: 0x10..0x20 - Response

Source

pub fn bdpr(&self) -> &Bdpr

0x20 - Buffer Data Port

Source

pub fn psr(&self) -> &Psr

0x24 - Present State

Source

pub fn hc1r_emmc_mode(&self) -> &Hc1rEmmcMode

0x28 - Host Control 1

Source

pub fn hc1r(&self) -> &Hc1r

0x28 - Host Control 1

Source

pub fn pcr(&self) -> &Pcr

0x29 - Power Control

Source

pub fn bgcr_emmc_mode(&self) -> &BgcrEmmcMode

0x2a - Block Gap Control

Source

pub fn bgcr(&self) -> &Bgcr

0x2a - Block Gap Control

Source

pub fn wcr(&self) -> &Wcr

0x2b - Wakeup Control

Source

pub fn ccr(&self) -> &Ccr

0x2c - Clock Control

Source

pub fn tcr(&self) -> &Tcr

0x2e - Timeout Control

Source

pub fn srr(&self) -> &Srr

0x2f - Software Reset

Source

pub fn nistr_emmc_mode(&self) -> &NistrEmmcMode

0x30 - Normal Interrupt Status

Source

pub fn nistr(&self) -> &Nistr

0x30 - Normal Interrupt Status

Source

pub fn eistr_emmc_mode(&self) -> &EistrEmmcMode

0x32 - Error Interrupt Status

Source

pub fn eistr(&self) -> &Eistr

0x32 - Error Interrupt Status

Source

pub fn nister_emmc_mode(&self) -> &NisterEmmcMode

0x34 - Normal Interrupt Status Enable

Source

pub fn nister(&self) -> &Nister

0x34 - Normal Interrupt Status Enable

Source

pub fn eister_emmc_mode(&self) -> &EisterEmmcMode

0x36 - Error Interrupt Status Enable

Source

pub fn eister(&self) -> &Eister

0x36 - Error Interrupt Status Enable

Source

pub fn nisier_emmc_mode(&self) -> &NisierEmmcMode

0x38 - Normal Interrupt Signal Enable

Source

pub fn nisier(&self) -> &Nisier

0x38 - Normal Interrupt Signal Enable

Source

pub fn eisier_emmc_mode(&self) -> &EisierEmmcMode

0x3a - Error Interrupt Signal Enable

Source

pub fn eisier(&self) -> &Eisier

0x3a - Error Interrupt Signal Enable

Source

pub fn acesr(&self) -> &Acesr

0x3c - Auto CMD Error Status

Source

pub fn hc2r_emmc_mode(&self) -> &Hc2rEmmcMode

0x3e - Host Control 2

Source

pub fn hc2r(&self) -> &Hc2r

0x3e - Host Control 2

Source

pub fn ca0r(&self) -> &Ca0r

0x40 - Capabilities 0

Source

pub fn ca1r(&self) -> &Ca1r

0x44 - Capabilities 1

Source

pub fn mccar(&self) -> &Mccar

0x48 - Maximum Current Capabilities

Source

pub fn feraces(&self) -> &Feraces

0x50 - Force Event for Auto CMD Error Status

Source

pub fn fereis(&self) -> &Fereis

0x52 - Force Event for Error Interrupt Status

Source

pub fn aesr(&self) -> &Aesr

0x54 - ADMA Error Status

Source

pub fn asar(&self, n: usize) -> &Asar

0x58 - ADMA System Address

Source

pub fn asar_iter(&self) -> impl Iterator<Item = &Asar>

Iterator for array of: 0x58 - ADMA System Address

Source

pub fn pvr(&self, n: usize) -> &Pvr

0x60..0x70 - Preset Value n

Source

pub fn pvr_iter(&self) -> impl Iterator<Item = &Pvr>

Iterator for array of: 0x60..0x70 - Preset Value n

Source

pub fn sisr(&self) -> &Sisr

0xfc - Slot Interrupt Status

Source

pub fn hcvr(&self) -> &Hcvr

0xfe - Host Controller Version

Source

pub fn apsr(&self) -> &Apsr

0x200 - Additional Present State Register

Source

pub fn mc1r(&self) -> &Mc1r

0x204 - MMC Control 1

Source

pub fn mc2r(&self) -> &Mc2r

0x205 - MMC Control 2

Source

pub fn acr(&self) -> &Acr

0x208 - AHB Control

Source

pub fn cc2r(&self) -> &Cc2r

0x20c - Clock Control 2

Source

pub fn cacr(&self) -> &Cacr

0x230 - Capabilities Control

Source

pub fn dbgr(&self) -> &Dbgr

0x234 - Debug

Trait Implementations§

Source§

impl Debug for Sdhc0

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for Sdhc0

Source§

type Target = RegisterBlock

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl Send for Sdhc0

Auto Trait Implementations§

§

impl Freeze for Sdhc0

§

impl RefUnwindSafe for Sdhc0

§

impl !Sync for Sdhc0

§

impl Unpin for Sdhc0

§

impl UnwindSafe for Sdhc0

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, 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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.