esp32c2/efuse/
rd_repeat_data0.rs1#[doc = "Register `RD_REPEAT_DATA0` reader"]
2pub type R = crate::R<RD_REPEAT_DATA0_SPEC>;
3#[doc = "Field `RD_DIS` reader - The bit be set to disable software read high/low 128-bit of BLK3."]
4pub type RD_DIS_R = crate::FieldReader;
5#[doc = "Field `WDT_DELAY_SEL` reader - Selects RTC watchdog timeout threshold, in unit of slow clock cycle. 0: 40000. 1: 80000. 2: 160000. 3:320000."]
6pub type WDT_DELAY_SEL_R = crate::FieldReader;
7#[doc = "Field `DIS_PAD_JTAG` reader - Set this bit to disable pad jtag."]
8pub type DIS_PAD_JTAG_R = crate::BitReader;
9#[doc = "Field `DIS_DOWNLOAD_ICACHE` reader - The bit be set to disable icache in download mode."]
10pub type DIS_DOWNLOAD_ICACHE_R = crate::BitReader;
11#[doc = "Field `DIS_DOWNLOAD_MANUAL_ENCRYPT` reader - The bit be set to disable manual encryption."]
12pub type DIS_DOWNLOAD_MANUAL_ENCRYPT_R = crate::BitReader;
13#[doc = "Field `SPI_BOOT_ENCRYPT_DECRYPT_CNT` reader - These bits be set to enable SPI boot encrypt/decrypt. Odd number of 1: enable. even number of 1: disable."]
14pub type SPI_BOOT_ENCRYPT_DECRYPT_CNT_R = crate::FieldReader;
15#[doc = "Field `XTS_KEY_LENGTH_256` reader - The bit be set means XTS_AES use the whole 256-bit efuse data in BLOCK3. Otherwise, XTS_AES use 128-bit eFuse data in BLOCK3."]
16pub type XTS_KEY_LENGTH_256_R = crate::BitReader;
17#[doc = "Field `UART_PRINT_CONTROL` reader - Set this bit to disable usb printing."]
18pub type UART_PRINT_CONTROL_R = crate::FieldReader;
19#[doc = "Field `FORCE_SEND_RESUME` reader - Set this bit to force ROM code to send a resume command during SPI boot."]
20pub type FORCE_SEND_RESUME_R = crate::BitReader;
21#[doc = "Field `DIS_DOWNLOAD_MODE` reader - Set this bit to disable download mode (boot_mode\\[3:0\\] = 0, 1, 2, 4, 5, 6, 7)."]
22pub type DIS_DOWNLOAD_MODE_R = crate::BitReader;
23#[doc = "Field `DIS_DIRECT_BOOT` reader - This bit set means disable direct_boot mode."]
24pub type DIS_DIRECT_BOOT_R = crate::BitReader;
25#[doc = "Field `ENABLE_SECURITY_DOWNLOAD` reader - Set this bit to enable secure UART download mode."]
26pub type ENABLE_SECURITY_DOWNLOAD_R = crate::BitReader;
27#[doc = "Field `FLASH_TPUW` reader - Configures flash waiting time after power-up, in unit of ms. If the value is less than 15, the waiting time is the configurable value. Otherwise, the waiting time is twice the configurable value."]
28pub type FLASH_TPUW_R = crate::FieldReader;
29#[doc = "Field `SECURE_BOOT_EN` reader - The bit be set to enable secure boot."]
30pub type SECURE_BOOT_EN_R = crate::BitReader;
31#[doc = "Field `RPT4_RESERVED` reader - Reserved (used for four backups method)."]
32pub type RPT4_RESERVED_R = crate::FieldReader<u16>;
33impl R {
34 #[doc = "Bits 0:1 - The bit be set to disable software read high/low 128-bit of BLK3."]
35 #[inline(always)]
36 pub fn rd_dis(&self) -> RD_DIS_R {
37 RD_DIS_R::new((self.bits & 3) as u8)
38 }
39 #[doc = "Bits 2:3 - Selects RTC watchdog timeout threshold, in unit of slow clock cycle. 0: 40000. 1: 80000. 2: 160000. 3:320000."]
40 #[inline(always)]
41 pub fn wdt_delay_sel(&self) -> WDT_DELAY_SEL_R {
42 WDT_DELAY_SEL_R::new(((self.bits >> 2) & 3) as u8)
43 }
44 #[doc = "Bit 4 - Set this bit to disable pad jtag."]
45 #[inline(always)]
46 pub fn dis_pad_jtag(&self) -> DIS_PAD_JTAG_R {
47 DIS_PAD_JTAG_R::new(((self.bits >> 4) & 1) != 0)
48 }
49 #[doc = "Bit 5 - The bit be set to disable icache in download mode."]
50 #[inline(always)]
51 pub fn dis_download_icache(&self) -> DIS_DOWNLOAD_ICACHE_R {
52 DIS_DOWNLOAD_ICACHE_R::new(((self.bits >> 5) & 1) != 0)
53 }
54 #[doc = "Bit 6 - The bit be set to disable manual encryption."]
55 #[inline(always)]
56 pub fn dis_download_manual_encrypt(&self) -> DIS_DOWNLOAD_MANUAL_ENCRYPT_R {
57 DIS_DOWNLOAD_MANUAL_ENCRYPT_R::new(((self.bits >> 6) & 1) != 0)
58 }
59 #[doc = "Bits 7:9 - These bits be set to enable SPI boot encrypt/decrypt. Odd number of 1: enable. even number of 1: disable."]
60 #[inline(always)]
61 pub fn spi_boot_encrypt_decrypt_cnt(&self) -> SPI_BOOT_ENCRYPT_DECRYPT_CNT_R {
62 SPI_BOOT_ENCRYPT_DECRYPT_CNT_R::new(((self.bits >> 7) & 7) as u8)
63 }
64 #[doc = "Bit 10 - The bit be set means XTS_AES use the whole 256-bit efuse data in BLOCK3. Otherwise, XTS_AES use 128-bit eFuse data in BLOCK3."]
65 #[inline(always)]
66 pub fn xts_key_length_256(&self) -> XTS_KEY_LENGTH_256_R {
67 XTS_KEY_LENGTH_256_R::new(((self.bits >> 10) & 1) != 0)
68 }
69 #[doc = "Bits 11:12 - Set this bit to disable usb printing."]
70 #[inline(always)]
71 pub fn uart_print_control(&self) -> UART_PRINT_CONTROL_R {
72 UART_PRINT_CONTROL_R::new(((self.bits >> 11) & 3) as u8)
73 }
74 #[doc = "Bit 13 - Set this bit to force ROM code to send a resume command during SPI boot."]
75 #[inline(always)]
76 pub fn force_send_resume(&self) -> FORCE_SEND_RESUME_R {
77 FORCE_SEND_RESUME_R::new(((self.bits >> 13) & 1) != 0)
78 }
79 #[doc = "Bit 14 - Set this bit to disable download mode (boot_mode\\[3:0\\] = 0, 1, 2, 4, 5, 6, 7)."]
80 #[inline(always)]
81 pub fn dis_download_mode(&self) -> DIS_DOWNLOAD_MODE_R {
82 DIS_DOWNLOAD_MODE_R::new(((self.bits >> 14) & 1) != 0)
83 }
84 #[doc = "Bit 15 - This bit set means disable direct_boot mode."]
85 #[inline(always)]
86 pub fn dis_direct_boot(&self) -> DIS_DIRECT_BOOT_R {
87 DIS_DIRECT_BOOT_R::new(((self.bits >> 15) & 1) != 0)
88 }
89 #[doc = "Bit 16 - Set this bit to enable secure UART download mode."]
90 #[inline(always)]
91 pub fn enable_security_download(&self) -> ENABLE_SECURITY_DOWNLOAD_R {
92 ENABLE_SECURITY_DOWNLOAD_R::new(((self.bits >> 16) & 1) != 0)
93 }
94 #[doc = "Bits 17:20 - Configures flash waiting time after power-up, in unit of ms. If the value is less than 15, the waiting time is the configurable value. Otherwise, the waiting time is twice the configurable value."]
95 #[inline(always)]
96 pub fn flash_tpuw(&self) -> FLASH_TPUW_R {
97 FLASH_TPUW_R::new(((self.bits >> 17) & 0x0f) as u8)
98 }
99 #[doc = "Bit 21 - The bit be set to enable secure boot."]
100 #[inline(always)]
101 pub fn secure_boot_en(&self) -> SECURE_BOOT_EN_R {
102 SECURE_BOOT_EN_R::new(((self.bits >> 21) & 1) != 0)
103 }
104 #[doc = "Bits 22:31 - Reserved (used for four backups method)."]
105 #[inline(always)]
106 pub fn rpt4_reserved(&self) -> RPT4_RESERVED_R {
107 RPT4_RESERVED_R::new(((self.bits >> 22) & 0x03ff) as u16)
108 }
109}
110#[cfg(feature = "impl-register-debug")]
111impl core::fmt::Debug for R {
112 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
113 f.debug_struct("RD_REPEAT_DATA0")
114 .field("rd_dis", &self.rd_dis())
115 .field("wdt_delay_sel", &self.wdt_delay_sel())
116 .field("dis_pad_jtag", &self.dis_pad_jtag())
117 .field("dis_download_icache", &self.dis_download_icache())
118 .field(
119 "dis_download_manual_encrypt",
120 &self.dis_download_manual_encrypt(),
121 )
122 .field(
123 "spi_boot_encrypt_decrypt_cnt",
124 &self.spi_boot_encrypt_decrypt_cnt(),
125 )
126 .field("xts_key_length_256", &self.xts_key_length_256())
127 .field("uart_print_control", &self.uart_print_control())
128 .field("force_send_resume", &self.force_send_resume())
129 .field("dis_download_mode", &self.dis_download_mode())
130 .field("dis_direct_boot", &self.dis_direct_boot())
131 .field("enable_security_download", &self.enable_security_download())
132 .field("flash_tpuw", &self.flash_tpuw())
133 .field("secure_boot_en", &self.secure_boot_en())
134 .field("rpt4_reserved", &self.rpt4_reserved())
135 .finish()
136 }
137}
138#[doc = "BLOCK0 data register 1.\n\nYou can [`read`](crate::Reg::read) this register and get [`rd_repeat_data0::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
139pub struct RD_REPEAT_DATA0_SPEC;
140impl crate::RegisterSpec for RD_REPEAT_DATA0_SPEC {
141 type Ux = u32;
142}
143#[doc = "`read()` method returns [`rd_repeat_data0::R`](R) reader structure"]
144impl crate::Readable for RD_REPEAT_DATA0_SPEC {}
145#[doc = "`reset()` method sets RD_REPEAT_DATA0 to value 0"]
146impl crate::Resettable for RD_REPEAT_DATA0_SPEC {
147 const RESET_VALUE: u32 = 0;
148}