#[doc = "Register `HC2R_EMMC_MODE` reader"]
pub type R = crate::R<Hc2rEmmcModeSpec>;
#[doc = "Register `HC2R_EMMC_MODE` writer"]
pub type W = crate::W<Hc2rEmmcModeSpec>;
#[doc = "HS200 Mode Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Hs200enselect {
#[doc = "0: SDR12"]
Sdr12 = 0,
#[doc = "1: SDR25"]
Sdr25 = 1,
#[doc = "2: SDR50"]
Sdr50 = 2,
#[doc = "3: SDR104"]
Sdr104 = 3,
#[doc = "4: DDR50"]
Ddr50 = 4,
}
impl From<Hs200enselect> for u8 {
#[inline(always)]
fn from(variant: Hs200enselect) -> Self {
variant as _
}
}
impl crate::FieldSpec for Hs200enselect {
type Ux = u8;
}
impl crate::IsEnum for Hs200enselect {}
#[doc = "Field `HS200EN` reader - HS200 Mode Enable"]
pub type Hs200enR = crate::FieldReader<Hs200enselect>;
impl Hs200enR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Option<Hs200enselect> {
match self.bits {
0 => Some(Hs200enselect::Sdr12),
1 => Some(Hs200enselect::Sdr25),
2 => Some(Hs200enselect::Sdr50),
3 => Some(Hs200enselect::Sdr104),
4 => Some(Hs200enselect::Ddr50),
_ => None,
}
}
#[doc = "SDR12"]
#[inline(always)]
pub fn is_sdr12(&self) -> bool {
*self == Hs200enselect::Sdr12
}
#[doc = "SDR25"]
#[inline(always)]
pub fn is_sdr25(&self) -> bool {
*self == Hs200enselect::Sdr25
}
#[doc = "SDR50"]
#[inline(always)]
pub fn is_sdr50(&self) -> bool {
*self == Hs200enselect::Sdr50
}
#[doc = "SDR104"]
#[inline(always)]
pub fn is_sdr104(&self) -> bool {
*self == Hs200enselect::Sdr104
}
#[doc = "DDR50"]
#[inline(always)]
pub fn is_ddr50(&self) -> bool {
*self == Hs200enselect::Ddr50
}
}
#[doc = "Field `HS200EN` writer - HS200 Mode Enable"]
pub type Hs200enW<'a, REG> = crate::FieldWriter<'a, REG, 4, Hs200enselect>;
impl<'a, REG> Hs200enW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[doc = "SDR12"]
#[inline(always)]
pub fn sdr12(self) -> &'a mut crate::W<REG> {
self.variant(Hs200enselect::Sdr12)
}
#[doc = "SDR25"]
#[inline(always)]
pub fn sdr25(self) -> &'a mut crate::W<REG> {
self.variant(Hs200enselect::Sdr25)
}
#[doc = "SDR50"]
#[inline(always)]
pub fn sdr50(self) -> &'a mut crate::W<REG> {
self.variant(Hs200enselect::Sdr50)
}
#[doc = "SDR104"]
#[inline(always)]
pub fn sdr104(self) -> &'a mut crate::W<REG> {
self.variant(Hs200enselect::Sdr104)
}
#[doc = "DDR50"]
#[inline(always)]
pub fn ddr50(self) -> &'a mut crate::W<REG> {
self.variant(Hs200enselect::Ddr50)
}
}
#[doc = "Driver Strength Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Drvselselect {
#[doc = "0: Driver Type B is Selected (Default)"]
B = 0,
#[doc = "1: Driver Type A is Selected"]
A = 1,
#[doc = "2: Driver Type C is Selected"]
C = 2,
#[doc = "3: Driver Type D is Selected"]
D = 3,
}
impl From<Drvselselect> for u8 {
#[inline(always)]
fn from(variant: Drvselselect) -> Self {
variant as _
}
}
impl crate::FieldSpec for Drvselselect {
type Ux = u8;
}
impl crate::IsEnum for Drvselselect {}
#[doc = "Field `DRVSEL` reader - Driver Strength Select"]
pub type DrvselR = crate::FieldReader<Drvselselect>;
impl DrvselR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Drvselselect {
match self.bits {
0 => Drvselselect::B,
1 => Drvselselect::A,
2 => Drvselselect::C,
3 => Drvselselect::D,
_ => unreachable!(),
}
}
#[doc = "Driver Type B is Selected (Default)"]
#[inline(always)]
pub fn is_b(&self) -> bool {
*self == Drvselselect::B
}
#[doc = "Driver Type A is Selected"]
#[inline(always)]
pub fn is_a(&self) -> bool {
*self == Drvselselect::A
}
#[doc = "Driver Type C is Selected"]
#[inline(always)]
pub fn is_c(&self) -> bool {
*self == Drvselselect::C
}
#[doc = "Driver Type D is Selected"]
#[inline(always)]
pub fn is_d(&self) -> bool {
*self == Drvselselect::D
}
}
#[doc = "Field `DRVSEL` writer - Driver Strength Select"]
pub type DrvselW<'a, REG> = crate::FieldWriter<'a, REG, 2, Drvselselect, crate::Safe>;
impl<'a, REG> DrvselW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[doc = "Driver Type B is Selected (Default)"]
#[inline(always)]
pub fn b(self) -> &'a mut crate::W<REG> {
self.variant(Drvselselect::B)
}
#[doc = "Driver Type A is Selected"]
#[inline(always)]
pub fn a(self) -> &'a mut crate::W<REG> {
self.variant(Drvselselect::A)
}
#[doc = "Driver Type C is Selected"]
#[inline(always)]
pub fn c(self) -> &'a mut crate::W<REG> {
self.variant(Drvselselect::C)
}
#[doc = "Driver Type D is Selected"]
#[inline(always)]
pub fn d(self) -> &'a mut crate::W<REG> {
self.variant(Drvselselect::D)
}
}
#[doc = "Execute Tuning\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Extunselect {
#[doc = "0: Not Tuned or Tuning Completed"]
No = 0,
#[doc = "1: Execute Tuning"]
Requested = 1,
}
impl From<Extunselect> for bool {
#[inline(always)]
fn from(variant: Extunselect) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `EXTUN` reader - Execute Tuning"]
pub type ExtunR = crate::BitReader<Extunselect>;
impl ExtunR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Extunselect {
match self.bits {
false => Extunselect::No,
true => Extunselect::Requested,
}
}
#[doc = "Not Tuned or Tuning Completed"]
#[inline(always)]
pub fn is_no(&self) -> bool {
*self == Extunselect::No
}
#[doc = "Execute Tuning"]
#[inline(always)]
pub fn is_requested(&self) -> bool {
*self == Extunselect::Requested
}
}
#[doc = "Field `EXTUN` writer - Execute Tuning"]
pub type ExtunW<'a, REG> = crate::BitWriter<'a, REG, Extunselect>;
impl<'a, REG> ExtunW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Not Tuned or Tuning Completed"]
#[inline(always)]
pub fn no(self) -> &'a mut crate::W<REG> {
self.variant(Extunselect::No)
}
#[doc = "Execute Tuning"]
#[inline(always)]
pub fn requested(self) -> &'a mut crate::W<REG> {
self.variant(Extunselect::Requested)
}
}
#[doc = "Sampling Clock Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Slckselselect {
#[doc = "0: Fixed clock is used to sample data"]
Fixed = 0,
#[doc = "1: Tuned clock is used to sample data"]
Tuned = 1,
}
impl From<Slckselselect> for bool {
#[inline(always)]
fn from(variant: Slckselselect) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `SLCKSEL` reader - Sampling Clock Select"]
pub type SlckselR = crate::BitReader<Slckselselect>;
impl SlckselR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Slckselselect {
match self.bits {
false => Slckselselect::Fixed,
true => Slckselselect::Tuned,
}
}
#[doc = "Fixed clock is used to sample data"]
#[inline(always)]
pub fn is_fixed(&self) -> bool {
*self == Slckselselect::Fixed
}
#[doc = "Tuned clock is used to sample data"]
#[inline(always)]
pub fn is_tuned(&self) -> bool {
*self == Slckselselect::Tuned
}
}
#[doc = "Field `SLCKSEL` writer - Sampling Clock Select"]
pub type SlckselW<'a, REG> = crate::BitWriter<'a, REG, Slckselselect>;
impl<'a, REG> SlckselW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Fixed clock is used to sample data"]
#[inline(always)]
pub fn fixed(self) -> &'a mut crate::W<REG> {
self.variant(Slckselselect::Fixed)
}
#[doc = "Tuned clock is used to sample data"]
#[inline(always)]
pub fn tuned(self) -> &'a mut crate::W<REG> {
self.variant(Slckselselect::Tuned)
}
}
#[doc = "Preset Value Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Pvalenselect {
#[doc = "0: SDCLK and Driver Strength are controlled by Host Controller"]
Host = 0,
#[doc = "1: Automatic Selection by Preset Value is Enabled"]
Auto = 1,
}
impl From<Pvalenselect> for bool {
#[inline(always)]
fn from(variant: Pvalenselect) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `PVALEN` reader - Preset Value Enable"]
pub type PvalenR = crate::BitReader<Pvalenselect>;
impl PvalenR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Pvalenselect {
match self.bits {
false => Pvalenselect::Host,
true => Pvalenselect::Auto,
}
}
#[doc = "SDCLK and Driver Strength are controlled by Host Controller"]
#[inline(always)]
pub fn is_host(&self) -> bool {
*self == Pvalenselect::Host
}
#[doc = "Automatic Selection by Preset Value is Enabled"]
#[inline(always)]
pub fn is_auto(&self) -> bool {
*self == Pvalenselect::Auto
}
}
#[doc = "Field `PVALEN` writer - Preset Value Enable"]
pub type PvalenW<'a, REG> = crate::BitWriter<'a, REG, Pvalenselect>;
impl<'a, REG> PvalenW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "SDCLK and Driver Strength are controlled by Host Controller"]
#[inline(always)]
pub fn host(self) -> &'a mut crate::W<REG> {
self.variant(Pvalenselect::Host)
}
#[doc = "Automatic Selection by Preset Value is Enabled"]
#[inline(always)]
pub fn auto(self) -> &'a mut crate::W<REG> {
self.variant(Pvalenselect::Auto)
}
}
impl R {
#[doc = "Bits 0:3 - HS200 Mode Enable"]
#[inline(always)]
pub fn hs200en(&self) -> Hs200enR {
Hs200enR::new((self.bits & 0x0f) as u8)
}
#[doc = "Bits 4:5 - Driver Strength Select"]
#[inline(always)]
pub fn drvsel(&self) -> DrvselR {
DrvselR::new(((self.bits >> 4) & 3) as u8)
}
#[doc = "Bit 6 - Execute Tuning"]
#[inline(always)]
pub fn extun(&self) -> ExtunR {
ExtunR::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 7 - Sampling Clock Select"]
#[inline(always)]
pub fn slcksel(&self) -> SlckselR {
SlckselR::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bit 15 - Preset Value Enable"]
#[inline(always)]
pub fn pvalen(&self) -> PvalenR {
PvalenR::new(((self.bits >> 15) & 1) != 0)
}
}
impl W {
#[doc = "Bits 0:3 - HS200 Mode Enable"]
#[inline(always)]
#[must_use]
pub fn hs200en(&mut self) -> Hs200enW<Hc2rEmmcModeSpec> {
Hs200enW::new(self, 0)
}
#[doc = "Bits 4:5 - Driver Strength Select"]
#[inline(always)]
#[must_use]
pub fn drvsel(&mut self) -> DrvselW<Hc2rEmmcModeSpec> {
DrvselW::new(self, 4)
}
#[doc = "Bit 6 - Execute Tuning"]
#[inline(always)]
#[must_use]
pub fn extun(&mut self) -> ExtunW<Hc2rEmmcModeSpec> {
ExtunW::new(self, 6)
}
#[doc = "Bit 7 - Sampling Clock Select"]
#[inline(always)]
#[must_use]
pub fn slcksel(&mut self) -> SlckselW<Hc2rEmmcModeSpec> {
SlckselW::new(self, 7)
}
#[doc = "Bit 15 - Preset Value Enable"]
#[inline(always)]
#[must_use]
pub fn pvalen(&mut self) -> PvalenW<Hc2rEmmcModeSpec> {
PvalenW::new(self, 15)
}
}
#[doc = "Host Control 2\n\nYou can [`read`](crate::Reg::read) this register and get [`hc2r_emmc_mode::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`hc2r_emmc_mode::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Hc2rEmmcModeSpec;
impl crate::RegisterSpec for Hc2rEmmcModeSpec {
type Ux = u16;
}
#[doc = "`read()` method returns [`hc2r_emmc_mode::R`](R) reader structure"]
impl crate::Readable for Hc2rEmmcModeSpec {}
#[doc = "`write(|w| ..)` method takes [`hc2r_emmc_mode::W`](W) writer structure"]
impl crate::Writable for Hc2rEmmcModeSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u16 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u16 = 0;
}
#[doc = "`reset()` method sets HC2R_EMMC_MODE to value 0"]
impl crate::Resettable for Hc2rEmmcModeSpec {
const RESET_VALUE: u16 = 0;
}