-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmtu2.hpp
3592 lines (2960 loc) · 110 KB
/
mtu2.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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
//=========================================================================//
/*! @file
@brief RX621/RX62N グループ・MTU2 定義
@author 平松邦仁 ([email protected])
@copyright Copyright (C) 2022, 2024 Kunihito Hiramatsu @n
Released under the MIT license @n
https://github.com/hirakuni45/RX/blob/master/LICENSE
*/
//=========================================================================//
#include "common/device.hpp"
#include "RX600/mtu_base.hpp"
namespace device {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief MTU ベース・クラス(各 MTU 共通)
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
struct mtux_base_t {
static constexpr auto PCLK = clock_profile::PCLK; ///< MTU master clock
static constexpr bool TGR32 = false; ///< 32 ビットカウンタ機能(全チャネル利用不可)
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief チャネル変換 AB
@param[in] ch チャネル
@return ポート・マッピング・チャネル
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <typename CH>
static auto conv_port_map_channel_ab(CH ch)
{
switch(ch) {
case CH::A: return port_map_mtu::CHANNEL::A;
case CH::B: return port_map_mtu::CHANNEL::B;
default: return port_map_mtu::CHANNEL::NONE;
}
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief チャネル変換 ABCD
@param[in] ch チャネル
@return ポート・マッピング・チャネル
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <typename CH>
static auto conv_port_map_channel_abcd(CH ch)
{
switch(ch) {
case CH::A: return port_map_mtu::CHANNEL::A;
case CH::B: return port_map_mtu::CHANNEL::B;
case CH::C: return port_map_mtu::CHANNEL::C;
case CH::D: return port_map_mtu::CHANNEL::D;
default: return port_map_mtu::CHANNEL::NONE;
}
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief ポートマッピングチャネルを取得
@param[in] ch チャネル
@return ポート・マッピング・チャネル
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <typename CH>
static auto conv_port_map_channel_uvw(CH ch)
{
switch(ch) {
case CH::U: return port_map_mtu::CHANNEL::U;
case CH::V: return port_map_mtu::CHANNEL::V;
case CH::W: return port_map_mtu::CHANNEL::W;
default: return port_map_mtu::CHANNEL::NONE;
}
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマコントロールレジスタ(TCR)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tcr_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 3> TPSC;
bits_rw_t<io_, bitpos::B3, 2> CKEG;
bits_rw_t<io_, bitpos::B5, 3> CCLR;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマコントロールレジスタ 2(TCR2)ダミー
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tcr2_t : public rw8_null_t<base> {
typedef rw8_null_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 3> TPSC2;
};
static inline tcr2_t<0x0000'0000> TCR2;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマモードレジスタ 1(TMDR)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tmdr_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 4> MD;
bit_rw_t <io_, bitpos::B4> BFA;
bit_rw_t <io_, bitpos::B5> BFB;
bit_rw_t <io_, bitpos::B6> BFE;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIORH)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tiorh_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 4> IOA;
bits_rw_t<io_, bitpos::B4, 4> IOB;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIORL)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tiorl_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 4> IOC;
bits_rw_t<io_, bitpos::B4, 4> IOD;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIORx)MTU5, MTU11
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tiorx_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bits_rw_t<io_, bitpos::B0, 5> IOC;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIOR_ab_t)
@param[in] TIORH TIORH クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TIORH, typename CH>
struct tior_ab_t {
typedef rw8_t<TIORH::address> ioh_;
bits_rw_t<ioh_, bitpos::B0, 4> IOA;
bits_rw_t<ioh_, bitpos::B4, 4> IOB;
//-------------------------------------------------------------//
/*!
@brief TIOR 全てのチャネルを無効
*/
//-------------------------------------------------------------//
void disable()
{
IOA = 0;
IOB = 0;
}
//-------------------------------------------------------------//
/*!
@brief TIOR の設定
@param[in] ch チャネル
@param[in] val 設定値
*/
//-------------------------------------------------------------//
bool set(CH ch, uint8_t val)
{
switch(ch) {
case CH::A:
IOA = val;
break;
case CH::B:
IOB = val;
break;
default:
return false;
}
return true;
}
bool operator[] (CH ch) { return set(ch); }
//-------------------------------------------------------------//
/*!
@brief TIOR の取得
@param[in] ch チャネル
*/
//-------------------------------------------------------------//
uint8_t get(CH ch)
{
switch(ch) {
case CH::A:
return IOA();
case CH::B:
return IOB();
default:
return 0x00;
}
}
uint8_t operator() (CH ch) { return get(ch); }
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIOR_abcd_t)
@param[in] TIORH TIORH クラス
@param[in] TIORL TIORL クラス
@param[in] CH チャネル型
@param[in] PER ペリフェラル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TIORH, class TIORL, typename CH, peripheral PER>
struct tior_abcd_t {
typedef rw8_t<TIORH::address> ioh_;
bits_rw_t<ioh_, bitpos::B0, 4> IOA;
bits_rw_t<ioh_, bitpos::B4, 4> IOB;
typedef rw8_t<TIORL::address> iol_;
bits_rw_t<iol_, bitpos::B0, 4> IOC;
bits_rw_t<iol_, bitpos::B4, 4> IOD;
typedef rw8_t<0x0008'860A> io3_;
bit_rw_t<io3_, bitpos::B0> OE3B;
bit_rw_t<io3_, bitpos::B1> OE4A;
bit_rw_t<io3_, bitpos::B2> OE4B;
bit_rw_t<io3_, bitpos::B3> OE3D;
bit_rw_t<io3_, bitpos::B4> OE4C;
bit_rw_t<io3_, bitpos::B5> OE4D;
typedef rw8_t<0x0008'8A0A> io4_;
bit_rw_t<io4_, bitpos::B0> OE9B;
bit_rw_t<io4_, bitpos::B1> OE10A;
bit_rw_t<io4_, bitpos::B2> OE10B;
bit_rw_t<io4_, bitpos::B3> OE9D;
bit_rw_t<io4_, bitpos::B4> OE10C;
bit_rw_t<io4_, bitpos::B5> OE10D;
//-------------------------------------------------------------//
/*!
@brief TIOR 全てのチャネルを無効
*/
//-------------------------------------------------------------//
void disable()
{
IOA = 0;
IOB = 0;
IOC = 0;
IOD = 0;
switch(PER) {
case peripheral::MTU3:
OE3B = 0;
OE3D = 0;
break;
case peripheral::MTU4:
OE4A = 0;
OE4B = 0;
OE4C = 0;
OE4D = 0;
break;
case peripheral::MTU9:
OE9B = 0;
OE9D = 0;
break;
case peripheral::MTU10:
OE10A = 0;
OE10B = 0;
OE10C = 0;
OE10D = 0;
break;
default:
break;
}
}
//-------------------------------------------------------------//
/*!
@brief TIOR の設定
@param[in] ch チャネル
@param[in] val 設定値
*/
//-------------------------------------------------------------//
bool set(CH ch, uint8_t val)
{
switch(ch) {
case CH::A:
switch(PER) {
case peripheral::MTU4:
OE4A = val != 0;
break;
case peripheral::MTU10:
OE10A = val != 0;
break;
default:
break;
}
IOA = val;
break;
case CH::B:
switch(PER) {
case peripheral::MTU3:
OE3B = val != 0;
break;
case peripheral::MTU4:
OE4B = val != 0;
break;
case peripheral::MTU9:
OE9B = val != 0;
break;
case peripheral::MTU10:
OE10B = val != 0;
break;
default:
break;
}
IOB = val;
break;
case CH::C:
switch(PER) {
case peripheral::MTU4:
OE4C = val != 0;
break;
case peripheral::MTU10:
OE10C = val != 0;
break;
default:
break;
}
IOC = val;
break;
case CH::D:
switch(PER) {
case peripheral::MTU3:
OE3D = val != 0;
break;
case peripheral::MTU4:
OE4D = val != 0;
break;
case peripheral::MTU9:
OE9D = val != 0;
break;
case peripheral::MTU10:
OE10D = val != 0;
break;
default:
break;
}
IOD = val;
break;
default:
return false;
}
return true;
}
bool operator[] (CH ch) { return set(ch); }
//-------------------------------------------------------------//
/*!
@brief TIOR の取得
@param[in] ch チャネル
*/
//-------------------------------------------------------------//
uint8_t get(CH ch)
{
switch(ch) {
case CH::A:
return IOA();
case CH::B:
return IOB();
case CH::C:
return IOC();
case CH::D:
return IOD();
default:
return 0x00;
}
}
uint8_t operator() (CH ch) { return get(ch); }
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマ I/O コントロールレジスタ(TIOR_uvw_t)
@param[in] TIORU TIORU クラス
@param[in] TIORV TIORV クラス
@param[in] TIORW TIORW クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TIORU, class TIORV, class TIORW, typename CH>
struct tior_uvw_t {
typedef rw8_t<TIORU::address> iou_;
bits_rw_t<iou_, bitpos::B0, 5> IOU;
typedef rw8_t<TIORV::address> iov_;
bits_rw_t<iov_, bitpos::B0, 5> IOV;
typedef rw8_t<TIORW::address> iow_;
bits_rw_t<iow_, bitpos::B0, 5> IOW;
//-------------------------------------------------------------//
/*!
@brief TIOR 全てのチャネルを無効
*/
//-------------------------------------------------------------//
void disable()
{
IOU = 0;
IOV = 0;
IOW = 0;
}
//-------------------------------------------------------------//
/*!
@brief TIOR の設定
@param[in] ch チャネル
@param[in] val 設定値
*/
//-------------------------------------------------------------//
bool set(CH ch, uint8_t val)
{
switch(ch) {
case CH::U:
IOU = val;
break;
case CH::V:
IOV = val;
break;
case CH::W:
IOW = val;
break;
default:
return false;
}
return true;
}
bool operator[] (CH ch) { return set(ch); }
//-------------------------------------------------------------//
/*!
@brief TIOR の取得
@param[in] ch チャネル
*/
//-------------------------------------------------------------//
uint8_t get(CH ch)
{
switch(ch) {
case CH::U:
return IOU();
case CH::V:
return IOV();
case CH::W:
return IOW();
default:
return 0x00;
}
}
uint8_t operator() (CH ch) { return get(ch); }
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマコンペアマッチクリアレジスタ(TCNTCMPCLR)MTU5/MTU11
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tcntcmpclr_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> CMPCLR5W;
bit_rw_t<io_, bitpos::B1> CMPCLR5V;
bit_rw_t<io_, bitpos::B2> CMPCLR5U;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマインタラプトイネーブルレジスタ(TIER)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tier_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> TGIEA;
bit_rw_t<io_, bitpos::B1> TGIEB;
bit_rw_t<io_, bitpos::B2> TGIEC;
bit_rw_t<io_, bitpos::B3> TGIED;
bit_rw_t<io_, bitpos::B4> TCIEV;
bit_rw_t<io_, bitpos::B5> TCIEU;
bit_rw_t<io_, bitpos::B6> TTGE2;
bit_rw_t<io_, bitpos::B7> TTGE;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマインタラプトイネーブルレジスタ 2(TIER2)MTU0, MTU1
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tier2_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> TGIEE;
bit_rw_t<io_, bitpos::B1> TGIEF;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマインタラプトイネーブルレジスタ X(TIERx)MTU5, MTU11
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tierx_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> TGIE5W;
bit_rw_t<io_, bitpos::B1> TGIE5V;
bit_rw_t<io_, bitpos::B2> TGIE5U;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマステータスレジスタ(TSR)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tsr_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B7> TCFD;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマバッファ動作転送モードレジスタ(TBTM)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct tbtm_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> TTSA;
bit_rw_t<io_, bitpos::B1> TTSB;
bit_rw_t<io_, bitpos::B2> TTSE;
};
//-----------------------------------------------------------------//
/*!
@brief タイマインプットキャプチャコントロールレジスタ(TICCR)MTU1/MTU7
@param[in] base ベースアドレス
*/
//-----------------------------------------------------------------//
template <uint32_t base>
struct ticcr_t : public rw8_t<base> {
typedef rw8_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> I1AE;
bit_rw_t<io_, bitpos::B1> I1BE;
bit_rw_t<io_, bitpos::B2> I2AE;
bit_rw_t<io_, bitpos::B3> I2BE;
};
//-----------------------------------------------------------------//
/*!
@brief タイマ A/D 変換開始要求コントロールレジスタ(TADCR)MTU4/MTU10
@param[in] base ベースアドレス
*/
//-----------------------------------------------------------------//
template <uint32_t base>
struct tadcr_t : public rw16_t<base> {
typedef rw16_t<base> io_;
using io_::operator =;
using io_::operator ();
using io_::operator |=;
using io_::operator &=;
bit_rw_t<io_, bitpos::B0> ITB4VE;
bit_rw_t<io_, bitpos::B1> ITB3AE;
bit_rw_t<io_, bitpos::B2> ITA4VE;
bit_rw_t<io_, bitpos::B3> ITA3AE;
bit_rw_t<io_, bitpos::B4> DT4BE;
bit_rw_t<io_, bitpos::B5> UT4BE;
bit_rw_t<io_, bitpos::B6> DT4AE;
bit_rw_t<io_, bitpos::B7> UT4AE;
bits_rw_t<io_, bitpos::B14, 2> BF;
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマジェネラルレジスタ(TGR A, B)
@param[in] TGRA TGRA クラス
@param[in] TGRB TGRB クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TGRA, class TGRB, typename CH>
struct tgr_ab_t {
static uint32_t address(CH ch)
{
switch(ch) {
case CH::A: return TGRA::address;
case CH::B: return TGRB::address;
}
return 0;
}
uint16_t operator () (CH ch) {
return device::rd16_(address(ch));
}
uint16_t& operator [] (CH ch) {
return *reinterpret_cast<uint16_t*>(address(ch));
}
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマジェネラルレジスタ(TGR A, B, C, D)
@param[in] TGRA TGRA クラス
@param[in] TGRB TGRB クラス
@param[in] TGRC TGRC クラス
@param[in] TGRD TGRD クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TGRA, class TGRB, class TGRC, class TGRD, typename CH>
struct tgr_abcd_t {
static uint32_t address(CH ch)
{
switch(ch) {
case CH::A: return TGRA::address;
case CH::B: return TGRB::address;
case CH::C: return TGRC::address;
case CH::D: return TGRD::address;
}
return 0;
}
uint16_t operator () (CH ch) {
return device::rd16_(address(ch));
}
uint16_t& operator [] (CH ch) {
return *reinterpret_cast<uint16_t*>(address(ch));
}
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマジェネラルレジスタ(TGR A, B, C, D, E, F)
@param[in] TGRA TGRA クラス
@param[in] TGRB TGRB クラス
@param[in] TGRC TGRC クラス
@param[in] TGRD TGRD クラス
@param[in] TGRE TGRE クラス
@param[in] TGRF TGRF クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TGRA, class TGRB, class TGRC, class TGRD, class TGRE, class TGRF, typename CH>
struct tgr_abcdef_t {
static uint32_t address(CH ch)
{
switch(ch) {
case CH::A: return TGRA::address;
case CH::B: return TGRB::address;
case CH::C: return TGRC::address;
case CH::D: return TGRD::address;
case CH::E: return TGRE::address;
case CH::F: return TGRF::address;
}
return 0;
}
uint16_t operator () (CH ch) {
return device::rd16_(address(ch));
}
uint16_t& operator [] (CH ch) {
return *reinterpret_cast<uint16_t*>(address(ch));
}
};
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief タイマジェネラルレジスタ(TGR U, V, W)
@param[in] TGRU TGRU クラス
@param[in] TGRV TGRV クラス
@param[in] TGRW TGRW クラス
@param[in] CH チャネル型
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <class TGRU, class TGRV, class TGRW, typename CH>
struct tgr_uvw_t {
static uint32_t address(CH ch)
{
switch(ch) {
case CH::U: return TGRU::address;
case CH::V: return TGRV::address;
case CH::W: return TGRW::address;
}
return 0;
}
uint16_t operator () (CH ch) {
return device::rd16_(address(ch));
}
uint16_t& operator [] (CH ch) {
return *reinterpret_cast<uint16_t*>(address(ch));
}
};
};
typedef mtux_base_t MTU;
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/*!
@brief MTU[AB] ベース・クラス(MTU0 ~ MTU4/MTU6 ~ MTU10)
@param[in] base ベースアドレス
*/
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
template <uint32_t base>
struct mtu_ab_t {
//-----------------------------------------------------------------//
/*!
@brief タイマスタートレジスタ(TSTR)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct tstr_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> CST0;
bit_rw_t<io_, bitpos::B1> CST1;
bit_rw_t<io_, bitpos::B2> CST2;
bit_rw_t<io_, bitpos::B6> CST3;
bit_rw_t<io_, bitpos::B7> CST4;
};
static inline tstr_t<base + 0x00> TSTR;
//-----------------------------------------------------------------//
/*!
@brief タイマシンクロレジスタ(TSYR)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct tsyr_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> SYNC0;
bit_rw_t<io_, bitpos::B1> SYNC1;
bit_rw_t<io_, bitpos::B2> SYNC2;
bit_rw_t<io_, bitpos::B6> SYNC3;
bit_rw_t<io_, bitpos::B7> SYNC4;
};
static inline tsyr_t<base + 0x01> TSYR;
//-----------------------------------------------------------------//
/*!
@brief タイマリードライトイネーブルレジスタ(TRWER)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct trwer_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> RWE;
};
static inline trwer_t<base + 0x04> TRWER;
//-----------------------------------------------------------------//
/*!
@brief タイマアウトプットマスタイネーブルレジスタ(TOER)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct toer_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> OE3B;
bit_rw_t<io_, bitpos::B1> OE4A;
bit_rw_t<io_, bitpos::B2> OE4B;
bit_rw_t<io_, bitpos::B3> OE3D;
bit_rw_t<io_, bitpos::B4> OE4C;
bit_rw_t<io_, bitpos::B5> OE4D;
};
static inline toer_t<base + 0x0A> TOER;
//-----------------------------------------------------------------//
/*!
@brief タイマアウトプットコントロールレジスタ 1(TOCR1)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct tocr1_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> OLSP;
bit_rw_t<io_, bitpos::B1> OLSN;
bit_rw_t<io_, bitpos::B2> TOCS;
bit_rw_t<io_, bitpos::B3> TOCL;
bit_rw_t<io_, bitpos::B6> PSYE;
};
static inline tocr1_t<base + 0x0E> TOCR1;
//-----------------------------------------------------------------//
/*!
@brief タイマアウトプットコントロールレジスタ 2(TOCR2)
@param[in] ofs オフセット
*/
//-----------------------------------------------------------------//
template <uint32_t ofs>
struct tocr2_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> OLS1P;
bit_rw_t <io_, bitpos::B1> OLS1N;
bit_rw_t <io_, bitpos::B2> OLS2P;
bit_rw_t <io_, bitpos::B3> OLS2N;
bit_rw_t <io_, bitpos::B4> OLS3P;
bit_rw_t <io_, bitpos::B5> OLS3N;
bits_rw_t<io_, bitpos::B6, 2> BF;
};
static inline tocr2_t<base + 0x0F> TOCR2;
//-----------------------------------------------------------------//
/*!
@brief タイマアウトプットレベルバッファレジスタ(TOLBR)
@param[in] ofs オフセット