1
2
3
8
9
10
11
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
184
185
186
187
188
189
190
191
192
/* ... */
#ifndef _HARDWARE_STRUCTS_OTP_H
#define _HARDWARE_STRUCTS_OTP_H
/* ... */
#include "hardware/address_mapped.h"
#include "hardware/regs/otp.h"
typedef struct {
_REG_(OTP_SW_LOCK0_OFFSET)
io_rw_32 sw_lock[64];
_REG_(OTP_SBPI_INSTR_OFFSET)
io_rw_32 sbpi_instr;
_REG_(OTP_SBPI_WDATA_0_OFFSET)
io_rw_32 sbpi_wdata[4];
_REG_(OTP_SBPI_RDATA_0_OFFSET)
io_ro_32 sbpi_rdata[4];
_REG_(OTP_SBPI_STATUS_OFFSET)
io_rw_32 sbpi_status;
_REG_(OTP_USR_OFFSET)
io_rw_32 usr;
_REG_(OTP_DBG_OFFSET)
io_rw_32 dbg;
uint32_t _pad0;
_REG_(OTP_BIST_OFFSET)
io_rw_32 bist;
_REG_(OTP_CRT_KEY_W0_OFFSET)
io_wo_32 crt_key_w[4];
_REG_(OTP_CRITICAL_OFFSET)
io_ro_32 critical;
_REG_(OTP_KEY_VALID_OFFSET)
io_ro_32 key_valid;
_REG_(OTP_DEBUGEN_OFFSET)
io_rw_32 debugen;
_REG_(OTP_DEBUGEN_LOCK_OFFSET)
io_rw_32 debugen_lock;
_REG_(OTP_ARCHSEL_OFFSET)
io_rw_32 archsel;
_REG_(OTP_ARCHSEL_STATUS_OFFSET)
io_ro_32 archsel_status;
_REG_(OTP_BOOTDIS_OFFSET)
io_rw_32 bootdis;
_REG_(OTP_INTR_OFFSET)
io_rw_32 intr;
_REG_(OTP_INTE_OFFSET)
io_rw_32 inte;
_REG_(OTP_INTF_OFFSET)
io_rw_32 intf;
_REG_(OTP_INTS_OFFSET)
io_ro_32 ints;
...} otp_hw_t;
#define otp_hw ((otp_hw_t *)OTP_BASE)
static_assert(sizeof (otp_hw_t) == 0x0174, "");
/* ... */
#endif