1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#[doc = "Reader of register BLK0_RDATA5"]
pub type R = crate::R<u32, super::BLK0_RDATA5>;
#[doc = "Writer for register BLK0_RDATA5"]
pub type W = crate::W<u32, super::BLK0_RDATA5>;
#[doc = "Register BLK0_RDATA5 `reset()`'s with value 0"]
impl crate::ResetValue for super::BLK0_RDATA5 {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}
#[doc = "Reader of field `RD_FLASH_CRYPT_CONFIG`"]
pub type RD_FLASH_CRYPT_CONFIG_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `RD_FLASH_CRYPT_CONFIG`"]
pub struct RD_FLASH_CRYPT_CONFIG_W<'a> {
    w: &'a mut W,
}
impl<'a> RD_FLASH_CRYPT_CONFIG_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x0f << 28)) | (((value as u32) & 0x0f) << 28);
        self.w
    }
}
#[doc = "Reader of field `RD_INST_CONFIG`"]
pub type RD_INST_CONFIG_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `RD_INST_CONFIG`"]
pub struct RD_INST_CONFIG_W<'a> {
    w: &'a mut W,
}
impl<'a> RD_INST_CONFIG_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0xff << 20)) | (((value as u32) & 0xff) << 20);
        self.w
    }
}
#[doc = "Reader of field `RD_SPI_PAD_CONFIG_D`"]
pub type RD_SPI_PAD_CONFIG_D_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `RD_SPI_PAD_CONFIG_D`"]
pub struct RD_SPI_PAD_CONFIG_D_W<'a> {
    w: &'a mut W,
}
impl<'a> RD_SPI_PAD_CONFIG_D_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x1f << 10)) | (((value as u32) & 0x1f) << 10);
        self.w
    }
}
#[doc = "Reader of field `RD_SPI_PAD_CONFIG_Q`"]
pub type RD_SPI_PAD_CONFIG_Q_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `RD_SPI_PAD_CONFIG_Q`"]
pub struct RD_SPI_PAD_CONFIG_Q_W<'a> {
    w: &'a mut W,
}
impl<'a> RD_SPI_PAD_CONFIG_Q_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x1f << 5)) | (((value as u32) & 0x1f) << 5);
        self.w
    }
}
#[doc = "Reader of field `RD_SPI_PAD_CONFIG_CLK`"]
pub type RD_SPI_PAD_CONFIG_CLK_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `RD_SPI_PAD_CONFIG_CLK`"]
pub struct RD_SPI_PAD_CONFIG_CLK_W<'a> {
    w: &'a mut W,
}
impl<'a> RD_SPI_PAD_CONFIG_CLK_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x1f) | ((value as u32) & 0x1f);
        self.w
    }
}
impl R {
    #[doc = "Bits 28:31"]
    #[inline(always)]
    pub fn rd_flash_crypt_config(&self) -> RD_FLASH_CRYPT_CONFIG_R {
        RD_FLASH_CRYPT_CONFIG_R::new(((self.bits >> 28) & 0x0f) as u8)
    }
    #[doc = "Bits 20:27"]
    #[inline(always)]
    pub fn rd_inst_config(&self) -> RD_INST_CONFIG_R {
        RD_INST_CONFIG_R::new(((self.bits >> 20) & 0xff) as u8)
    }
    #[doc = "Bits 10:14"]
    #[inline(always)]
    pub fn rd_spi_pad_config_d(&self) -> RD_SPI_PAD_CONFIG_D_R {
        RD_SPI_PAD_CONFIG_D_R::new(((self.bits >> 10) & 0x1f) as u8)
    }
    #[doc = "Bits 5:9"]
    #[inline(always)]
    pub fn rd_spi_pad_config_q(&self) -> RD_SPI_PAD_CONFIG_Q_R {
        RD_SPI_PAD_CONFIG_Q_R::new(((self.bits >> 5) & 0x1f) as u8)
    }
    #[doc = "Bits 0:4"]
    #[inline(always)]
    pub fn rd_spi_pad_config_clk(&self) -> RD_SPI_PAD_CONFIG_CLK_R {
        RD_SPI_PAD_CONFIG_CLK_R::new((self.bits & 0x1f) as u8)
    }
}
impl W {
    #[doc = "Bits 28:31"]
    #[inline(always)]
    pub fn rd_flash_crypt_config(&mut self) -> RD_FLASH_CRYPT_CONFIG_W {
        RD_FLASH_CRYPT_CONFIG_W { w: self }
    }
    #[doc = "Bits 20:27"]
    #[inline(always)]
    pub fn rd_inst_config(&mut self) -> RD_INST_CONFIG_W {
        RD_INST_CONFIG_W { w: self }
    }
    #[doc = "Bits 10:14"]
    #[inline(always)]
    pub fn rd_spi_pad_config_d(&mut self) -> RD_SPI_PAD_CONFIG_D_W {
        RD_SPI_PAD_CONFIG_D_W { w: self }
    }
    #[doc = "Bits 5:9"]
    #[inline(always)]
    pub fn rd_spi_pad_config_q(&mut self) -> RD_SPI_PAD_CONFIG_Q_W {
        RD_SPI_PAD_CONFIG_Q_W { w: self }
    }
    #[doc = "Bits 0:4"]
    #[inline(always)]
    pub fn rd_spi_pad_config_clk(&mut self) -> RD_SPI_PAD_CONFIG_CLK_W {
        RD_SPI_PAD_CONFIG_CLK_W { w: self }
    }
}