-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathexdmac.hpp
511 lines (430 loc) · 15.6 KB
/
exdmac.hpp
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
#pragma once
//=============================================================================//
/*! @file
@brief EXDMA Controller / EXDMA コントローラ @n
EXDMAC: RX621/RX62N @n
EXDMACa: RX631/RX63N @n
EXDMACa: RX64M/RX71M @n
EXDMACa: RX651/RX65N @n
EXDMACa: RX66N @n
EXDMACa: RX671 @n
EXDMACa: RX72N/RX72M
@author 平松邦仁 (hira@rvf-rc45.net)
@copyright Copyright (C) 2018, 2024 Kunihito Hiramatsu @n
Released under the MIT license @n
https://github.com/hirakuni45/RX/blob/master/LICENSE
*/
//=============================================================================//
#include "common/device.hpp"
namespace device {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMAC core class
@param[in] base ベース・アドレス
@param[in] per ペリフェラル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base, peripheral per>
struct exdmac_core_t {
static constexpr auto PERIPHERAL = per; ///< ペリフェラル型
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 転送元アドレスレジスタ(EDMSAR)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<base + 0x00> EDMSAR;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 転送先アドレスレジスタ(EDMDAR)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<base + 0x04> EDMDAR;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 転送カウントレジスタ(EDMCRA)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<base + 0x08> EDMCRA;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA ブロック転送カウントレジスタ(EDMCRB)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw16_t<base + 0x0C> EDMCRB;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 転送モードレジスタ(EDMTMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmtmd_t : public rw32_t<ofs> {
typedef rw32_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 2> DCTG;
bits_rw_t<io_, bitpos::B8, 2> SZ;
bits_rw_t<io_, bitpos::B12, 2> DTS;
bits_rw_t<io_, bitpos::B14, 2> MD;
};
static inline edmtmd_t<base + 0x10> EDMTMD;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 割り込み設定レジスタ(EDMINT)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmint_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DARIE;
bit_rw_t<io_, bitpos::B1> SARIE;
bit_rw_t<io_, bitpos::B2> RPTIE;
bit_rw_t<io_, bitpos::B3> ESIE;
bit_rw_t<io_, bitpos::B4> DTIE;
};
static inline edmint_t<base + 0x13> EDMINT;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA アドレスモードレジスタ(EDMAMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmamd_t : public rw32_t<ofs> {
typedef rw32_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 5> DARA;
bits_rw_t<io_, bitpos::B6, 2> DM;
bits_rw_t<io_, bitpos::B8, 5> SARA;
bits_rw_t<io_, bitpos::B14, 2> SM;
bit_rw_t <io_, bitpos::B16> DIR;
bit_rw_t <io_, bitpos::B17> AMS;
};
static inline edmamd_t<base + 0x14> EDMAMD;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 転送許可レジスタ(EDMCNT)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmcnt_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DTE;
};
static inline edmcnt_t<base + 0x1C> EDMCNT;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA ソフトウェア起動レジスタ(EDMREQ)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmreq_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> SWREQ;
bit_rw_t<io_, bitpos::B4> CLRS;
};
static inline edmreq_t<base + 0x1D> EDMREQ;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA ステータスレジスタ(EDMSTS)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmsts_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> ESIF;
bit_rw_t<io_, bitpos::B4> DTIF;
bit_ro_t<io_, bitpos::B7> ACT;
};
static inline edmsts_t<base + 0x1E> EDMSTS;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 外部要求センスモードレジスタ(EDMRMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmrmd_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 2> DREQS;
};
static inline edmrmd_t<base + 0x20> EDMRMD;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 外部要求フラグレジスタ(EDMERF)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmerf_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> EREQ;
};
static inline edmerf_t<base + 0x21> EDMERF;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 周辺要求フラグレジスタ(EDMPRF)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmprf_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> PREQ;
};
static inline edmprf_t<base + 0x22> EDMPRF;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMAC 定義(EXDMAC0、EXDMAC1 共通クラス)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
struct exdmac_t {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA モジュール起動レジスタ(EDMAST)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmast_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DMST;
};
static inline edmast_t<0x0008'2A00> EDMAST;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief クラスタバッファレジスタ y(CLSBRy)(y = 0 ~ 7)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<0x0008'2BE0> CLSBR0;
static inline rw32_t<0x0008'2BE4> CLSBR1;
static inline rw32_t<0x0008'2BE8> CLSBR2;
static inline rw32_t<0x0008'2BEC> CLSBR3;
static inline rw32_t<0x0008'2BF0> CLSBR4;
static inline rw32_t<0x0008'2BF4> CLSBR5;
static inline rw32_t<0x0008'2BF8> CLSBR6;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMACa 定義(EXDMAC0、EXDMAC1 共通クラス)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
struct exdmaca_t {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA モジュール起動レジスタ(EDMAST)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmast_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DMST;
};
static inline edmast_t<0x0008'2A00> EDMAST;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief クラスタバッファレジスタ y(CLSBRy)(y = 0 ~ 7)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<0x0008'2BE0> CLSBR0;
static inline rw32_t<0x0008'2BE4> CLSBR1;
static inline rw32_t<0x0008'2BE8> CLSBR2;
static inline rw32_t<0x0008'2BEC> CLSBR3;
static inline rw32_t<0x0008'2BF0> CLSBR4;
static inline rw32_t<0x0008'2BF4> CLSBR5;
static inline rw32_t<0x0008'2BF8> CLSBR6;
static inline rw32_t<0x0008'2BFC> CLSBR7;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMAC0 定義
@param[in] base ベース・アドレス
@param[in] per ペリフェラル型
@param[in] ivec 割り込みベクター
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base, peripheral per, ICU::VECTOR ivec>
struct exdmac0_t : public exdmac_core_t<base, per> {
static constexpr auto IVEC = ivec;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 出力設定レジスタ(EDMOMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmomd_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B1> DACKW;
bit_rw_t<io_, bitpos::B2> DACKE;
bit_rw_t<io_, bitpos::B3> DACKS;
};
static inline edmomd_t<base + 0x12> EDMOMD;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA オフセットレジスタ(EDMOFR)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<base + 0x18> EDMOFR;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMACa0 定義
@param[in] base ベース・アドレス
@param[in] per ペリフェラル型
@param[in] ivec 割り込みベクター
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base, peripheral per, ICU::VECTOR ivec>
struct exdmaca0_t : public exdmac_core_t<base, per> {
static constexpr auto IVEC = ivec;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 出力設定レジスタ(EDMOMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmomd_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DACKSEL;
bit_rw_t<io_, bitpos::B1> DACKW;
bit_rw_t<io_, bitpos::B2> DACKE;
bit_rw_t<io_, bitpos::B3> DACKS;
};
static inline edmomd_t<base + 0x12> EDMOMD;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA オフセットレジスタ(EDMOFR)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
static inline rw32_t<base + 0x18> EDMOFR;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMAC1 定義
@param[in] base ベース・アドレス
@param[in] per ペリフェラル型
@param[in] ivec 割り込みベクター
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base, peripheral per, ICU::VECTOR ivec>
struct exdmac1_t : public exdmac_core_t<base, per> {
static constexpr auto IVEC = ivec;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 出力設定レジスタ(EDMOMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmomd_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B1> DACKW;
bit_rw_t<io_, bitpos::B2> DACKE;
bit_rw_t<io_, bitpos::B3> DACKS;
};
static inline edmomd_t<base + 0x12> EDMOMD;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMACa1 定義
@param[in] base ベース・アドレス
@param[in] per ペリフェラル型
@param[in] ivec 割り込みベクター
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base, peripheral per, ICU::VECTOR ivec>
struct exdmaca1_t : public exdmac_core_t<base, per> {
static constexpr auto IVEC = ivec;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief EXDMA 出力設定レジスタ(EDMOMD)
@param[in] ofs オフセット
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t ofs>
struct edmomd_t : public rw8_t<ofs> {
typedef rw8_t<ofs> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> DACKSEL;
bit_rw_t<io_, bitpos::B1> DACKW;
bit_rw_t<io_, bitpos::B2> DACKE;
bit_rw_t<io_, bitpos::B3> DACKS;
};
static inline edmomd_t<base + 0x12> EDMOMD;
};
#if defined(SIG_RX621) || defined(SIG_RX62N)
typedef exdmac_t EXDMAC;
typedef exdmac0_t<0x0008'2800, peripheral::EXDMAC0, ICU::VECTOR::EXDMACI0> EXDMAC0;
typedef exdmac1_t<0x0008'2840, peripheral::EXDMAC1, ICU::VECTOR::EXDMACI1> EXDMAC1;
#else
typedef exdmaca_t EXDMAC;
typedef exdmaca0_t<0x0008'2800, peripheral::EXDMAC0, ICU::VECTOR::EXDMAC0I> EXDMAC0;
typedef exdmaca1_t<0x0008'2840, peripheral::EXDMAC1, ICU::VECTOR::EXDMAC1I> EXDMAC1;
#endif
}