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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#[doc = r"Register block"]
#[repr(C)]
#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
pub struct RegisterBlock {
    text: [TEXT; 32],
    sha1_start: SHA1_START,
    sha1_continue: SHA1_CONTINUE,
    sha1_load: SHA1_LOAD,
    sha1_busy: SHA1_BUSY,
    sha256_start: SHA256_START,
    sha256_continue: SHA256_CONTINUE,
    sha256_load: SHA256_LOAD,
    sha256_busy: SHA256_BUSY,
    sha384_start: SHA384_START,
    sha384_continue: SHA384_CONTINUE,
    sha384_load: SHA384_LOAD,
    sha384_busy: SHA384_BUSY,
    sha512_start: SHA512_START,
    sha512_continue: SHA512_CONTINUE,
    sha512_load: SHA512_LOAD,
    sha512_busy: SHA512_BUSY,
}
impl RegisterBlock {
    #[doc = "0x00..0x80 - "]
    #[inline(always)]
    pub const fn text(&self, n: usize) -> &TEXT {
        &self.text[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x00..0x80 - "]
    #[inline(always)]
    pub fn text_iter(&self) -> impl Iterator<Item = &TEXT> {
        self.text.iter()
    }
    #[doc = "0x80 - "]
    #[inline(always)]
    pub const fn sha1_start(&self) -> &SHA1_START {
        &self.sha1_start
    }
    #[doc = "0x84 - "]
    #[inline(always)]
    pub const fn sha1_continue(&self) -> &SHA1_CONTINUE {
        &self.sha1_continue
    }
    #[doc = "0x88 - "]
    #[inline(always)]
    pub const fn sha1_load(&self) -> &SHA1_LOAD {
        &self.sha1_load
    }
    #[doc = "0x8c - "]
    #[inline(always)]
    pub const fn sha1_busy(&self) -> &SHA1_BUSY {
        &self.sha1_busy
    }
    #[doc = "0x90 - "]
    #[inline(always)]
    pub const fn sha256_start(&self) -> &SHA256_START {
        &self.sha256_start
    }
    #[doc = "0x94 - "]
    #[inline(always)]
    pub const fn sha256_continue(&self) -> &SHA256_CONTINUE {
        &self.sha256_continue
    }
    #[doc = "0x98 - "]
    #[inline(always)]
    pub const fn sha256_load(&self) -> &SHA256_LOAD {
        &self.sha256_load
    }
    #[doc = "0x9c - "]
    #[inline(always)]
    pub const fn sha256_busy(&self) -> &SHA256_BUSY {
        &self.sha256_busy
    }
    #[doc = "0xa0 - "]
    #[inline(always)]
    pub const fn sha384_start(&self) -> &SHA384_START {
        &self.sha384_start
    }
    #[doc = "0xa4 - "]
    #[inline(always)]
    pub const fn sha384_continue(&self) -> &SHA384_CONTINUE {
        &self.sha384_continue
    }
    #[doc = "0xa8 - "]
    #[inline(always)]
    pub const fn sha384_load(&self) -> &SHA384_LOAD {
        &self.sha384_load
    }
    #[doc = "0xac - "]
    #[inline(always)]
    pub const fn sha384_busy(&self) -> &SHA384_BUSY {
        &self.sha384_busy
    }
    #[doc = "0xb0 - "]
    #[inline(always)]
    pub const fn sha512_start(&self) -> &SHA512_START {
        &self.sha512_start
    }
    #[doc = "0xb4 - "]
    #[inline(always)]
    pub const fn sha512_continue(&self) -> &SHA512_CONTINUE {
        &self.sha512_continue
    }
    #[doc = "0xb8 - "]
    #[inline(always)]
    pub const fn sha512_load(&self) -> &SHA512_LOAD {
        &self.sha512_load
    }
    #[doc = "0xbc - "]
    #[inline(always)]
    pub const fn sha512_busy(&self) -> &SHA512_BUSY {
        &self.sha512_busy
    }
}
#[doc = "TEXT (rw) register accessor: \n\nYou can [`read`](crate::generic::Reg::read) this register and get [`text::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`text::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@text`] module"]
pub type TEXT = crate::Reg<text::TEXT_SPEC>;
#[doc = ""]
pub mod text;
#[doc = "SHA1_START (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha1_start::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha1_start`] module"]
pub type SHA1_START = crate::Reg<sha1_start::SHA1_START_SPEC>;
#[doc = ""]
pub mod sha1_start;
#[doc = "SHA1_CONTINUE (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha1_continue::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha1_continue`] module"]
pub type SHA1_CONTINUE = crate::Reg<sha1_continue::SHA1_CONTINUE_SPEC>;
#[doc = ""]
pub mod sha1_continue;
#[doc = "SHA1_LOAD (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha1_load::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha1_load`] module"]
pub type SHA1_LOAD = crate::Reg<sha1_load::SHA1_LOAD_SPEC>;
#[doc = ""]
pub mod sha1_load;
#[doc = "SHA1_BUSY (r) register accessor: \n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sha1_busy::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha1_busy`] module"]
pub type SHA1_BUSY = crate::Reg<sha1_busy::SHA1_BUSY_SPEC>;
#[doc = ""]
pub mod sha1_busy;
#[doc = "SHA256_START (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha256_start::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha256_start`] module"]
pub type SHA256_START = crate::Reg<sha256_start::SHA256_START_SPEC>;
#[doc = ""]
pub mod sha256_start;
#[doc = "SHA256_LOAD (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha256_load::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha256_load`] module"]
pub type SHA256_LOAD = crate::Reg<sha256_load::SHA256_LOAD_SPEC>;
#[doc = ""]
pub mod sha256_load;
#[doc = "SHA256_CONTINUE (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha256_continue::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha256_continue`] module"]
pub type SHA256_CONTINUE = crate::Reg<sha256_continue::SHA256_CONTINUE_SPEC>;
#[doc = ""]
pub mod sha256_continue;
#[doc = "SHA256_BUSY (r) register accessor: \n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sha256_busy::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha256_busy`] module"]
pub type SHA256_BUSY = crate::Reg<sha256_busy::SHA256_BUSY_SPEC>;
#[doc = ""]
pub mod sha256_busy;
#[doc = "SHA384_START (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha384_start::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha384_start`] module"]
pub type SHA384_START = crate::Reg<sha384_start::SHA384_START_SPEC>;
#[doc = ""]
pub mod sha384_start;
#[doc = "SHA384_CONTINUE (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha384_continue::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha384_continue`] module"]
pub type SHA384_CONTINUE = crate::Reg<sha384_continue::SHA384_CONTINUE_SPEC>;
#[doc = ""]
pub mod sha384_continue;
#[doc = "SHA384_LOAD (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha384_load::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha384_load`] module"]
pub type SHA384_LOAD = crate::Reg<sha384_load::SHA384_LOAD_SPEC>;
#[doc = ""]
pub mod sha384_load;
#[doc = "SHA384_BUSY (r) register accessor: \n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sha384_busy::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha384_busy`] module"]
pub type SHA384_BUSY = crate::Reg<sha384_busy::SHA384_BUSY_SPEC>;
#[doc = ""]
pub mod sha384_busy;
#[doc = "SHA512_START (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha512_start::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha512_start`] module"]
pub type SHA512_START = crate::Reg<sha512_start::SHA512_START_SPEC>;
#[doc = ""]
pub mod sha512_start;
#[doc = "SHA512_CONTINUE (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha512_continue::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha512_continue`] module"]
pub type SHA512_CONTINUE = crate::Reg<sha512_continue::SHA512_CONTINUE_SPEC>;
#[doc = ""]
pub mod sha512_continue;
#[doc = "SHA512_LOAD (w) register accessor: \n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sha512_load::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha512_load`] module"]
pub type SHA512_LOAD = crate::Reg<sha512_load::SHA512_LOAD_SPEC>;
#[doc = ""]
pub mod sha512_load;
#[doc = "SHA512_BUSY (r) register accessor: \n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sha512_busy::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sha512_busy`] module"]
pub type SHA512_BUSY = crate::Reg<sha512_busy::SHA512_BUSY_SPEC>;
#[doc = ""]
pub mod sha512_busy;