-
Notifications
You must be signed in to change notification settings - Fork 3
/
uart_csr.rb
418 lines (361 loc) · 10.6 KB
/
uart_csr.rb
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
# frozen_string_literal: true
register_block {
name 'uart_csr'
byte_size 32
register {
name 'rbr'
offset_address 0x00
type [:indirect, ['lcr.dlab', 0]]
comment 'Receiver Buffer Register'
bit_field { bit_assignment lsb: 0, width: 8; type :rotrg }
}
register {
name 'thr'
offset_address 0x00
type [:indirect, ['lcr.dlab', 0]]
comment 'Transmitter Holding Register'
bit_field { bit_assignment lsb: 0, width: 8; type :wotrg; initial_value 0xFF }
}
register {
name 'ier'
offset_address 0x04
type [:indirect, ['lcr.dlab', 0]]
comment 'Interrupt Enable Register'
bit_field {
name 'erbfi'; bit_assignment lsb: 0, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Enable Received Data Available Interrupt
0: Disables Received Data Available Interrupts
1: Enables Received Data Available Interrupts
COMMENT
}
bit_field {
name 'etbei'; bit_assignment lsb: 1, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Enable Transmitter Holding Register Empty Interrupt
0: Disables Transmitter Holding Register Empty Interrupts
1: Enables Transmitter Holding Register Interrupts
COMMENT
}
bit_field {
name 'elsi'; bit_assignment lsb: 2, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Enable Receiver Line Status Interrupt
0: Disables Receiver Line Status Interrupts
1: Enables Receiver Line Status Interrupts
COMMENT
}
bit_field {
name 'edssi'; bit_assignment lsb: 3, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Enable Modem Status Interrupt
0: Disables Modem Status Interrupts
1: Enables Modem Status Interrupts
COMMENT
}
}
register {
name 'iir'
offset_address 0x08
comment 'Interrupt Identification Register'
bit_field {
name 'intpend'; bit_assignment lsb: 0, width: 1; type :ro; initial_value 1
comment <<~'COMMENT'
0: Interrupt is pending
1: No interrupt is pending
COMMENT
}
bit_field {
name 'intid2'; bit_assignment lsb: 1, width: 3; type :ro; initial_value 0b000
comment <<~'COMMENT'
Interrupt ID
011: Receiver Line Status (Highest)
010: Received Data Available (Second)
110: Character Timeout (Second)
001: Transmitter Holding Register Empty (Third)
000: Modem Status (Fourth)
COMMENT
}
}
register {
name 'fcr'
offset_address 0x08
comment 'FIFO Control Register'
bit_field {
name 'fifoen'; bit_assignment lsb: 0, width: 1; type :wo; initial_value 0
comment <<~'COMMENT'
FIFO Enable
1: Enables FIFOs
COMMENT
}
bit_field {
name 'rcvr_fifo_reset'; bit_assignment lsb: 1, width: 1; type :w1trg
comment <<~'COMMENT'
Receiver FIFO Reset
1: Resets RCVR FIFO
COMMENT
}
bit_field {
name 'xmit_fifo_reset'; bit_assignment lsb: 2, width: 1; type :w1trg
comment <<~'COMMENT'
Transmitter FIFO Reset
1: Resets XMIT FIFO
COMMENT
}
bit_field {
name 'dma_mode_select'; bit_assignment lsb: 3, width: 1; type :wo; initial_value 0
comment <<~'COMMENT'
DMA Mode Select
0: Mode 0
1: Mode 1
COMMENT
}
bit_field {
name 'rcvr_fifo_trigger_level'; bit_assignment lsb: 6, width: 2; type :wo; initial_value 0b00
comment <<~'COMMENT'
RCVR FIFO Trigger Level
0b00: 1 byte
0b01: 4 bytes
0b10: 8 bytes
0b11: 14 bytes
COMMENT
}
}
register {
name 'lcr'
offset_address 0x0C
comment 'line control register'
bit_field {
name 'wls'; bit_assignment lsb: 0, width: 2; type :rw; initial_value 0b11
comment <<~'COMMENT'
Word Length Select
0b00: 5 bits/character
0b01: 6 bits/character
0b10: 7 bits/character
0b11: 8 bits/character
COMMENT
}
bit_field {
name 'stb'; bit_assignment lsb: 2, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Number of Stop Bits
0: 1 Stop bit
1: 2 Stop bits or 1.5, if 5 bits/character selected
COMMENT
}
bit_field {
name 'pen'; bit_assignment lsb: 3, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Parity Enable
1: Enables parity
0: Disables parity
COMMENT
}
bit_field {
name 'eps'; bit_assignment lsb: 4, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Even Parity Select
1: Selects Even parity
0: Selects Odd parity
COMMENT
}
bit_field {
name 'stick_parity'; bit_assignment lsb: 5, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Stick Parity
1: Stick Parity is enabled
0: Stick Parity is disabled
COMMENT
}
bit_field {
name 'set_break'; bit_assignment lsb: 6, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Set Break
1: Enables break condition
0: Disables break condition
COMMENT
}
bit_field {
name 'dlab'; bit_assignment lsb: 7, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Divisor Latch Access Bit.
1: Allows access to the Divisor Latch Registers and reading of the FIFO Control Register
0: Allows access to RBR, THR, IER and IIR registers
COMMENT
}
}
register {
name 'mrc'
offset_address 0x10
comment 'Modem Control Register'
bit_field {
name 'dtr'; bit_assignment lsb: 0, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Data Terminal Ready
1: Drives DTRN Low
0: Drives DTRN High
COMMENT
}
bit_field {
name 'rts'; bit_assignment lsb: 1, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Request To Send
1: Drives RTSN Low
0: Drives RTSN High
COMMENT
}
bit_field {
name 'out1'; bit_assignment lsb: 2, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
User Output 1
1: Drives OUT1N Low
0: Drives OUT1N High
COMMENT
}
bit_field {
name 'out2'; bit_assignment lsb: 3, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
User Output 2
1: Drives OUT1N Low
0: Drives OUT1N High
COMMENT
}
bit_field {
name 'loop'; bit_assignment lsb: 4, width: 1; type :rw; initial_value 0
comment <<~'COMMENT'
Loop Back
1: Enables loop back
COMMENT
}
}
register {
name 'lsr'
offset_address 0x14
comment 'Line Status Register'
bit_field {
name 'dr'; bit_assignment lsb: 0, width: 1; type :ro; initial_value 0
comment <<~'COMMENT'
Data Ready
0: All the data in RBR or FIFO is read
1: Complete incoming character has been received and transferred into the RBR of FIFO
COMMENT
}
bit_field {
name 'oe'; bit_assignment lsb: 1, width: 1; type :rotrg; initial_value 0
comment 'Overrun Error'
}
bit_field {
name 'pe'; bit_assignment lsb: 2, width: 1; type :rotrg; initial_value 0
comment 'Parity Error'
}
bit_field {
name 'fe'; bit_assignment lsb: 3, width: 1; type :rotrg; initial_value 0
comment 'Framing Error'
}
bit_field {
name 'bi'; bit_assignment lsb: 4, width: 1; type :rotrg; initial_value 0
comment 'Break Interrupt'
}
bit_field {
name 'thre'; bit_assignment lsb: 5, width: 1; type :ro; initial_value 0
comment <<~'COMMENT'
Transmitter Holding Register Empty
0: THR or Transmitter FIFO has data to transmit
1: THR and Transmitter FIFO are empty
COMMENT
}
bit_field {
name 'temt'; bit_assignment lsb: 6, width: 1; type :ro; initial_value 0
comment <<~'COMMENT'
Transmitter Empty:
0: THR or Transmitter shift register contains data
1: THR, Transmitter FIFO and Transmitter shift register are empty
COMMENT
}
bit_field {
name 'error_in_rcvr_fifo'; bit_assignment lsb: 7, width: 1; type :ro; initial_value 0
comment 'RCVR FIFO contains at least one receiver error (Parity, Framing, Break condition)'
}
}
register {
name 'msr'
offset_address 0x18
comment 'Modem Status Register'
bit_field {
name 'dcts'; bit_assignment lsb: 0, width: 1; type :rotrg; initial_value 0
comment <<~'COMMENT'
Delta Clear To Send
Change in CTSN after last MSR read
COMMENT
}
bit_field {
name 'ddsr'; bit_assignment lsb: 1, width: 1; type :rotrg; initial_value 0
comment <<~'COMMENT'
Delta Data Set Ready
Change in DSRN after last MSR read
COMMENT
}
bit_field {
name 'teri'; bit_assignment lsb: 2, width: 1; type :ro; initial_value 0
comment <<~'COMMENT'
Trailing Edge Ring Indicator
RIN has changed from a Low to a High
COMMENT
}
bit_field {
name 'ddcd'; bit_assignment lsb: 3, width: 1; type :rotrg; initial_value 0
comment <<~'COMMENT'
Delta Data Carrier Detect
Change in DCDN after last MSR read
COMMENT
}
bit_field {
name 'cts'; bit_assignment lsb: 4, width: 1; type :ro
comment <<~'COMMENT'
Clear To Send
Complement of CTSN input
COMMENT
}
bit_field {
name 'dsr'; bit_assignment lsb: 5, width: 1; type :ro
comment <<~'COMMENT'
Data Set Ready
Complement of DSRN input
COMMENT
}
bit_field {
name 'ri'; bit_assignment lsb: 6, width: 1; type :ro
comment <<~'COMMENT'
Ring Indicator
Complement of RIN input
COMMENT
}
bit_field {
name 'dcd'; bit_assignment lsb: 7, width: 1; type :ro
comment <<~'COMMENT'
Data Carrier Detect
Complement of DCDN input
COMMENT
}
}
register {
name 'scratch'
offset_address 0x1c
comment 'Scratch Register'
bit_field { bit_assignment lsb: 0, width: 8; type :rw; initial_value 0 }
}
register {
name 'dll'
offset_address 0x00
type [:indirect, ['lcr.dlab', 1]]
comment 'Divisor Latch (Least Significant Byte) Register'
bit_field { bit_assignment lsb: 0, width: 8; type :rw; initial_value default: 0 }
}
register {
name 'dlm'
offset_address 0x04
type [:indirect, ['lcr.dlab', 1]]
comment 'Divisor Latch (Most Significant Byte) Register'
bit_field { bit_assignment lsb: 0, width: 8; type :rw; initial_value default: 0 }
}
}