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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
//! Register structures.

use crate::specifiers::{DuplexStatus, LinkStatus, OperationMode, Protocol, SpeedStatus};

macro_rules! impl_boilerplate_for {
    ($REG:ident) => {
        impl From<u8> for $REG {
            fn from(val: u8) -> Self {
                Self(val)
            }
        }

        impl From<$REG> for u8 {
            fn from(val: $REG) -> u8 {
                val.0
            }
        }

        impl Default for $REG {
            fn default() -> Self {
                Self::DEFAULT
            }
        }
    };
}

/// Mode register (MR).
///
/// Used for software reset, and controlling modes of operation.
///
/// This is used by the [`Registers::mr`] and [`Registers::set_mr`] methods.
///
/// [`Registers::mr`]: crate::Registers::mr
/// [`Registers::set_mr`]: crate::Registers::set_mr
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub struct Mode(u8);
impl_boilerplate_for!(Mode);

impl Mode {
    /// Mode register reset value.
    pub const RESET: u8 = 0x00;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Mode;
    ///
    /// assert_eq!(Mode::DEFAULT, Mode::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Bit offset for the `RST` field.
    pub const RST_OFFSET: u8 = 7;
    /// Bit offset for the `WOL` field.
    pub const WOL_OFFSET: u8 = 5;
    /// Bit offset for the `PB` field.
    pub const PB_OFFSET: u8 = 4;
    /// Bit offset for the `PPPoE` field.
    pub const PPPOE_OFFSET: u8 = 3;
    /// Bit offset for the `FARP` field.
    pub const FARP_OFFSET: u8 = 1;

    /// Bit mask for the `RST` field.
    pub const RST_MASK: u8 = 1 << Self::RST_OFFSET;
    /// Bit mask for the `WOL` field.
    pub const WOL_MASK: u8 = 1 << Self::WOL_OFFSET;
    /// Bit mask for the `PB` field.
    pub const PB_MASK: u8 = 1 << Self::PB_OFFSET;
    /// Bit mask for the `PPPoE` field.
    pub const PPPOE_MASK: u8 = 1 << Self::PPPOE_OFFSET;
    /// Bit mask for the `FARP` field.
    pub const FARP_MASK: u8 = 1 << Self::FARP_OFFSET;

    /// Set the software reset bit to `1`.
    ///
    /// When reset all internal registers will be initialized.
    #[must_use = "rst returns a modified Mode"]
    pub const fn rst(mut self) -> Self {
        self.0 |= Self::RST_MASK;
        self
    }

    /// Wake on LAN.
    ///
    /// If WOL mode is enabled and the received magic packet over
    /// UDP has been normally processed, the interrupt pin (INTn) asserts to low.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Mode;
    ///
    /// let mr: Mode = Mode::DEFAULT;
    /// assert!(!mr.wol_enabled());
    /// let mr: Mode = mr.enable_wol();
    /// assert!(mr.wol_enabled());
    /// let mr: Mode = mr.disable_wol();
    /// assert!(!mr.wol_enabled());
    /// ```
    pub const fn wol_enabled(&self) -> bool {
        self.0 & Self::WOL_MASK != 0
    }

    /// Enable wake on LAN.
    #[must_use = "enable_wol returns a modified Mode"]
    pub const fn enable_wol(mut self) -> Self {
        self.0 |= Self::WOL_MASK;
        self
    }

    /// Disable wake on LAN.
    #[must_use = "disable_wol returns a modified Mode"]
    pub const fn disable_wol(mut self) -> Self {
        self.0 &= !Self::WOL_MASK;
        self
    }

    /// Ping block mode.
    ///
    /// If enabled it blocks responses to ping requests.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Mode;
    ///
    /// let mr: Mode = Mode::DEFAULT;
    /// assert!(!mr.pb_enabled());
    /// let mr: Mode = mr.enable_pb();
    /// assert!(mr.pb_enabled());
    /// let mr: Mode = mr.disable_pb();
    /// assert!(!mr.pb_enabled());
    /// ```
    pub const fn pb_enabled(&self) -> bool {
        self.0 & Self::PB_MASK != 0
    }

    /// Enable ping block.
    #[must_use = "enable_pb returns a modified Mode"]
    pub const fn enable_pb(mut self) -> Self {
        self.0 |= Self::PB_MASK;
        self
    }

    /// Disable ping block.
    #[must_use = "disable_pb returns a modified Mode"]
    pub const fn disable_pb(mut self) -> Self {
        self.0 &= !Self::PB_MASK;
        self
    }

    /// PPPoE mode.
    ///
    /// If you use ADSL this should be enabled.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Mode;
    ///
    /// let mr: Mode = Mode::DEFAULT;
    /// assert!(!mr.pppoe_enabled());
    /// let mr: Mode = mr.enable_pppoe();
    /// assert!(mr.pppoe_enabled());
    /// let mr: Mode = mr.disable_pppoe();
    /// assert!(!mr.pppoe_enabled());
    /// ```
    pub const fn pppoe_enabled(&self) -> bool {
        self.0 & Self::PPPOE_MASK != 0
    }

    /// Enable PPPoE mode.
    #[must_use = "enable_pppoe returns a modified Mode"]
    pub const fn enable_pppoe(mut self) -> Self {
        self.0 |= Self::PPPOE_MASK;
        self
    }

    /// Disable PPPoE mode.
    #[must_use = "disable_pppoe returns a modified Mode"]
    pub const fn disable_pppoe(mut self) -> Self {
        self.0 &= !Self::PPPOE_MASK;
        self
    }

    /// Force ARP.
    ///
    /// When enabled it forces sending ARP request whenever data is sent.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Mode;
    ///
    /// let mr: Mode = Mode::DEFAULT;
    /// assert!(!mr.farp_enabled());
    /// let mr: Mode = mr.enable_farp();
    /// assert!(mr.farp_enabled());
    /// let mr: Mode = mr.disable_farp();
    /// assert!(!mr.farp_enabled());
    /// ```
    pub const fn farp_enabled(&self) -> bool {
        self.0 & Self::FARP_MASK != 0
    }

    /// Enable force ARP.
    #[must_use = "enable_farp returns a modified Mode"]
    pub const fn enable_farp(mut self) -> Self {
        self.0 |= Self::FARP_MASK;
        self
    }

    /// Disable force ARP.
    #[must_use = "disable_farp returns a modified Mode"]
    pub const fn disable_farp(mut self) -> Self {
        self.0 &= !Self::FARP_MASK;
        self
    }
}

impl ::core::fmt::Display for Mode {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("Mode")
            .field("wol_enabled", &self.wol_enabled())
            .field("pb_enabled", &self.pb_enabled())
            .field("pppoe_enabled", &self.pppoe_enabled())
            .field("farp_enabled", &self.farp_enabled())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for Mode {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "Mode {{ wol_enabled: {}, pb_enabled: {}, pppoe_enabled: {}, farp_enabled: {} }}",
            self.wol_enabled(),
            self.pb_enabled(),
            self.pppoe_enabled(),
            self.farp_enabled(),
        );
    }
}

/// Interrupt and interrupt mask register (IR and IMR).
///
/// When used for interrupt masking:
/// * `false`: Interrupt is disabled.
/// * `true`: Interrupt is enabled.
///
/// When used for reading interrupt status:
/// * `false`: Interrupt is not raised.
/// * `true`: Interrupt is raised.
///
/// This is used by these methods:
/// * [`Registers::ir`]
/// * [`Registers::set_ir`]
/// * [`Registers::imr`]
/// * [`Registers::set_imr`]
///
/// [`Registers::ir`]: crate::Registers::ir
/// [`Registers::set_ir`]: crate::Registers::set_ir
/// [`Registers::imr`]: crate::Registers::imr
/// [`Registers::set_imr`]: crate::Registers::set_imr
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct Interrupt(u8);
impl_boilerplate_for!(Interrupt);

impl Interrupt {
    /// Interrupt and interrupt mask reset value.
    pub const RESET: u8 = 0x00;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Interrupt;
    ///
    /// assert_eq!(Interrupt::DEFAULT, Interrupt::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Bit offset for the `CONFLICT` field.
    pub const CONFLICT_OFFSET: u8 = 7;
    /// Bit offset for the `UNREACH` field.
    pub const UNREACH_OFFSET: u8 = 6;
    /// Bit offset for the `PPPoE` field.
    pub const PPPOE_OFFSET: u8 = 5;
    /// Bit offset for the `MP` field.
    pub const MP_OFFSET: u8 = 4;

    /// Bit mask for the `CONFLICT` field.
    pub const CONFLICT_MASK: u8 = 1 << Self::CONFLICT_OFFSET;
    /// Bit mask for the `UNREACH` field.
    pub const UNREACH_MASK: u8 = 1 << Self::UNREACH_OFFSET;
    /// Bit mask for the `PPPoE` field.
    pub const PPPOE_MASK: u8 = 1 << Self::PPPOE_OFFSET;
    /// Bit mask for the `MP` field.
    pub const MP_MASK: u8 = 1 << Self::MP_OFFSET;

    /// Get the value of the IP conflict interrupt.
    ///
    /// This interrupt is set when our source IP is the same as the sender IP
    /// in the received ARP request.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Interrupt;
    ///
    /// let ir: Interrupt = Interrupt::DEFAULT;
    /// assert!(!ir.conflict());
    /// let ir: Interrupt = ir.set_conflict();
    /// assert!(ir.conflict());
    /// let ir: Interrupt = ir.clear_conflict();
    /// assert!(!ir.conflict());
    /// ```
    pub const fn conflict(&self) -> bool {
        self.0 & Self::CONFLICT_MASK != 0
    }

    /// Set the IP conflict bit.
    #[must_use = "set_conflict returns a modified Interrupt"]
    pub const fn set_conflict(mut self) -> Self {
        self.0 |= Self::CONFLICT_MASK;
        self
    }

    /// Clear the IP conflict bit.
    #[must_use = "clear_conflict returns a modified Interrupt"]
    pub const fn clear_conflict(mut self) -> Self {
        self.0 &= !Self::CONFLICT_MASK;
        self
    }

    /// Get the destination unreachable interrupt.
    ///
    /// This interrupt is set when receiving the ICMP
    /// (destination port unreachable) packet.
    ///
    /// When this interrupt is set destination information such as the IP
    /// address and port number may be checked with the corresponding [UIPR] and
    /// [UPORTR] registers.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Interrupt;
    ///
    /// let ir: Interrupt = Interrupt::DEFAULT;
    /// assert!(!ir.unreach());
    /// let ir: Interrupt = ir.set_unreach();
    /// assert!(ir.unreach());
    /// let ir: Interrupt = ir.clear_unreach();
    /// assert!(!ir.unreach());
    /// ```
    ///
    /// [UIPR]: crate::Registers::uipr
    /// [UPORTR]: crate::Registers::uportr
    pub const fn unreach(&self) -> bool {
        self.0 & Self::UNREACH_MASK != 0
    }

    /// Set the destination unreachable bit.
    #[must_use = "set_unreach returns a modified Interrupt"]
    pub const fn set_unreach(mut self) -> Self {
        self.0 |= Self::UNREACH_MASK;
        self
    }

    /// Clear the destination unreachable bit.
    #[must_use = "clear_unreach returns a modified Interrupt"]
    pub const fn clear_unreach(mut self) -> Self {
        self.0 &= !Self::UNREACH_MASK;
        self
    }

    /// Get the PPPoE connection close interrupt.
    ///
    /// This interrupt is set when PPPoE is disconnected during PPPoE.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Interrupt;
    ///
    /// let ir: Interrupt = Interrupt::DEFAULT;
    /// assert!(!ir.pppoe());
    /// let ir: Interrupt = ir.set_pppoe();
    /// assert!(ir.pppoe());
    /// let ir: Interrupt = ir.clear_pppoe();
    /// assert!(!ir.pppoe());
    /// ```
    pub const fn pppoe(&self) -> bool {
        self.0 & Self::PPPOE_MASK != 0
    }

    /// Set the PPPoE connection close bit.
    #[must_use = "set_pppoe returns a modified Interrupt"]
    pub const fn set_pppoe(mut self) -> Self {
        self.0 |= Self::PPPOE_MASK;
        self
    }

    /// Clear the PPPoE connection close bit.
    #[must_use = "clear_pppoe returns a modified Interrupt"]
    pub const fn clear_pppoe(mut self) -> Self {
        self.0 &= !Self::PPPOE_MASK;
        self
    }

    /// Get the magic packet interrupt.
    ///
    /// This interrupt is set when wake on LAN is enabled, and the magic packet
    /// is received.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::Interrupt;
    ///
    /// let ir: Interrupt = Interrupt::DEFAULT;
    /// assert!(!ir.mp());
    /// let ir: Interrupt = ir.set_mp();
    /// assert!(ir.mp());
    /// let ir: Interrupt = ir.clear_mp();
    /// assert!(!ir.mp());
    /// ```
    pub const fn mp(&self) -> bool {
        self.0 & Self::MP_MASK != 0
    }

    /// Set the magic packet bit.
    #[must_use = "set_mp returns a modified Interrupt"]
    pub const fn set_mp(mut self) -> Self {
        self.0 |= Self::MP_MASK;
        self
    }

    /// Clear the magic packet bit.
    #[must_use = "clear_mp returns a modified Interrupt"]
    pub const fn clear_mp(mut self) -> Self {
        self.0 &= !Self::MP_MASK;
        self
    }
}

impl ::core::fmt::Display for Interrupt {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("Interrupt")
            .field("conflict", &self.conflict())
            .field("unreach", &self.unreach())
            .field("pppoe", &self.pppoe())
            .field("mp", &self.mp())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for Interrupt {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "Interrupt {{ conflict: {}, unreach: {}, pppoe: {}, mp: {} }}",
            self.conflict(),
            self.unreach(),
            self.pppoe(),
            self.mp(),
        );
    }
}

/// PHY configuration register (PHYCFGR).
///
/// Used for:
/// * PHY reset.
/// * PHY operation modes.
/// * PHY status.
///
/// This is used by the [`Registers::phycfgr`] and
/// [`Registers::set_phycfgr`] methods.
///
/// [`Registers::phycfgr`]: crate::Registers::phycfgr
/// [`Registers::set_phycfgr`]: crate::Registers::set_phycfgr
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct PhyCfg(u8);
impl_boilerplate_for!(PhyCfg);

impl PhyCfg {
    /// PHY configuration register reset value.
    pub const RESET: u8 = 0b10111000;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::PhyCfg;
    ///
    /// assert_eq!(PhyCfg::DEFAULT, PhyCfg::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Bit offset for the `RST` field.
    pub const RST_OFFSET: u8 = 7;
    /// Bit offset for the `OPMD` field.
    pub const OPMD_OFFSET: u8 = 6;
    /// Bit offset for the `OPMDC` field.
    pub const OPMDC_OFFSET: u8 = 3;
    /// Bit offset for the `DPX` field.
    pub const DPX_OFFSET: u8 = 2;
    /// Bit offset for the `SPD` field.
    pub const SPD_OFFSET: u8 = 1;
    /// Bit offset for the `LNK` field.
    pub const LNK_OFFSET: u8 = 0;

    /// Bit mask for the `RST` field.
    pub const RST_MASK: u8 = 1 << Self::RST_OFFSET;
    /// Bit mask for the `OPMD` field.
    pub const OPMD_MASK: u8 = 1 << Self::OPMD_OFFSET;
    /// Bit mask for the `OPMDC` field.
    pub const OPMDC_MASK: u8 = 0b111 << Self::OPMDC_OFFSET;
    /// Bit mask for the `DPX` field.
    pub const DPX_MASK: u8 = 1 << Self::DPX_OFFSET;
    /// Bit mask for the `SPD` field.
    pub const SPD_MASK: u8 = 1 << Self::SPD_OFFSET;
    /// Bit mask for the `LNK` field.
    pub const LNK_MASK: u8 = 1 << Self::LNK_OFFSET;

    /// Set the PHY reset bit to `0`, resetting the PHY.
    #[must_use = "rst returns a modified PhyCfg"]
    pub const fn rst(mut self) -> Self {
        self.0 &= !Self::RST_MASK;
        self
    }

    /// Get the PHY operation mode.
    ///
    /// * `true` configure PHY with software.
    /// * `false` (reset value) configure PHY with hardware.
    pub const fn opmd(&self) -> bool {
        self.0 & Self::OPMD_MASK != 0
    }

    /// Enable hardware configuration of the PHY operation mode.
    ///
    /// This uses the PMODE pins to select the PHY operation mode.
    ///
    /// | PMODE\[2\] | PMODE\[1\] | PMODE\[0\] | Description                                  |
    /// |------------|------------|------------|----------------------------------------------|
    /// | 0          | 0          | 0          | 10BT Half-duplex, Auto-negotiation disabled  |
    /// | 0          | 0          | 1          | 10BT Full-duplex, Auto-negotiation disabled  |
    /// | 0          | 1          | 0          | 100BT Half-duplex, Auto-negotiation disabled |
    /// | 0          | 1          | 1          | 100BT Full-duplex, Auto-negotiation disabled |
    /// | 1          | 0          | 0          | 100BT Half-duplex, Auto-negotiation enabled  |
    /// | 1          | 0          | 1          | Not used                                     |
    /// | 1          | 1          | 0          | Not used                                     |
    /// | 1          | 1          | 1          | All capable, Auto-negotiation enabled        |
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::PhyCfg;
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert!(!phy_cfg.opmd());
    /// let phy_cfg: PhyCfg = phy_cfg.software_op();
    /// assert!(phy_cfg.opmd());
    /// let phy_cfg: PhyCfg = phy_cfg.hardware_op();
    /// assert!(!phy_cfg.opmd());
    /// ```
    #[must_use = "hardware_op returns a modified PhyCfg"]
    pub const fn hardware_op(mut self) -> Self {
        self.0 &= !Self::OPMD_MASK;
        self
    }

    /// Enable software configuration of the PHY operation mode.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::PhyCfg;
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert!(!phy_cfg.opmd());
    /// let phy_cfg: PhyCfg = phy_cfg.software_op();
    /// assert!(phy_cfg.opmd());
    /// ```
    #[must_use = "software_op returns a modified PhyCfg"]
    pub const fn software_op(mut self) -> Self {
        self.0 |= Self::OPMD_MASK;
        self
    }

    /// Get the operation mode.
    ///
    /// This returns an `Err(u8)` with the opmdc bits if the opmdc bits do not
    /// match a valid operation mode.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{OperationMode, PhyCfg};
    ///
    /// assert_eq!(PhyCfg::DEFAULT.opmdc(), OperationMode::Auto);
    /// ```
    pub const fn opmdc(&self) -> OperationMode {
        // from_raw masks the value
        OperationMode::from_raw(self.0 >> Self::OPMDC_OFFSET)
    }

    /// Set the PHY operation mode.
    ///
    /// Setting this will also call [`PhyCfg::software_op`] to enable the PHY
    /// configuration with the value stored in this register.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{OperationMode, PhyCfg};
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert!(!phy_cfg.opmd());
    /// let phy_cfg: PhyCfg = phy_cfg.set_opmdc(OperationMode::PowerDown);
    /// assert!(phy_cfg.opmd());
    /// assert_eq!(phy_cfg.opmdc(), OperationMode::PowerDown);
    /// let phy_cfg: PhyCfg = phy_cfg.set_opmdc(OperationMode::Auto);
    /// assert_eq!(phy_cfg.opmdc(), OperationMode::Auto);
    /// ```
    #[must_use = "set_opmdc returns a modified PhyCfg"]
    pub const fn set_opmdc(mut self, mode: OperationMode) -> Self {
        self = self.software_op();
        self.0 &= !Self::OPMDC_MASK;
        self.0 |= (mode as u8) << Self::OPMDC_OFFSET;
        self
    }

    /// Get the duplex status.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{DuplexStatus, PhyCfg};
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert_eq!(phy_cfg.dpx(), DuplexStatus::Half);
    /// ```
    pub const fn dpx(&self) -> DuplexStatus {
        match self.0 & Self::DPX_MASK == Self::DPX_MASK {
            true => DuplexStatus::Full,
            false => DuplexStatus::Half,
        }
    }

    /// Get the speed status.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{PhyCfg, SpeedStatus};
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert_eq!(phy_cfg.spd(), SpeedStatus::Mbps10);
    /// ```
    pub const fn spd(&self) -> SpeedStatus {
        match self.0 & Self::SPD_MASK == Self::SPD_MASK {
            true => SpeedStatus::Mbps100,
            false => SpeedStatus::Mbps10,
        }
    }

    /// Get the link status.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{LinkStatus, PhyCfg};
    ///
    /// let phy_cfg: PhyCfg = PhyCfg::DEFAULT;
    /// assert_eq!(phy_cfg.lnk(), LinkStatus::Down);
    /// ```
    pub const fn lnk(&self) -> LinkStatus {
        match self.0 & Self::LNK_MASK == Self::LNK_MASK {
            true => LinkStatus::Up,
            false => LinkStatus::Down,
        }
    }
}

impl ::core::fmt::Display for PhyCfg {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("PhyCfg")
            .field("opmd", &self.opmd())
            .field("opmdc", &self.opmdc())
            .field("dpx", &self.dpx())
            .field("spd", &self.spd())
            .field("lnk", &self.lnk())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for PhyCfg {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "PhyCfg {{ opmd: {}, opmdc: {}, dpx: {}, spd: {}, lnk: {} }}",
            self.opmd(),
            self.opmdc(),
            self.dpx(),
            self.spd(),
            self.lnk(),
        );
    }
}

/// Socket Mode Register (Sn_MR).
///
/// This is used by the [`Registers::sn_mr`] and
/// [`Registers::set_sn_mr`] methods.
///
/// [`Registers::set_sn_mr`]: crate::Registers::set_sn_mr
/// [`Registers::sn_mr`]: crate::Registers::sn_mr
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct SocketMode(u8);
impl_boilerplate_for!(SocketMode);

impl SocketMode {
    /// Reset value of the socket mode register.
    pub const RESET: u8 = 0x00;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// assert_eq!(SocketMode::DEFAULT, SocketMode::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Bit offset for the `MULTI` field.
    pub const MULTI_OFFSET: u8 = 7;
    /// Bit offset for the `MFEN` field.
    pub const MFEN_OFFSET: u8 = 7;
    /// Bit offset for the `BCASTB` field.
    pub const BCASTB_OFFSET: u8 = 6;
    /// Bit offset for the `ND` field.
    pub const ND_OFFSET: u8 = 5;
    /// Bit offset for the `MC` field.
    pub const MC_OFFSET: u8 = 5;
    /// Bit offset for the `MMB` field.
    pub const MMB_OFFSET: u8 = 5;
    /// Bit offset for the `UCASTB` field.
    pub const UCASTB_OFFSET: u8 = 4;
    /// Bit offset for the `MIP6B` field.
    pub const MIP6B_OFFSET: u8 = 4;

    /// Bit mask for the `MULTI` field.
    pub const MULTI_MASK: u8 = 1 << Self::MULTI_OFFSET;
    /// Bit mask for the `MFEN` field.
    pub const MFEN_MASK: u8 = 1 << Self::MFEN_OFFSET;
    /// Bit mask for the `BCASTB` field.
    pub const BCASTB_MASK: u8 = 1 << Self::BCASTB_OFFSET;
    /// Bit mask for the `ND` field.
    pub const ND_MASK: u8 = 1 << Self::ND_OFFSET;
    /// Bit mask for the `MC` field.
    pub const MC_MASK: u8 = 1 << Self::MC_OFFSET;
    /// Bit mask for the `MMB` field.
    pub const MMB_MASK: u8 = 1 << Self::MMB_OFFSET;
    /// Bit mask for the `UCASTB` field.
    pub const UCASTB_MASK: u8 = 1 << Self::UCASTB_OFFSET;
    /// Bit mask for the `MIP6B` field.
    pub const MIP6B_MASK: u8 = 1 << Self::MIP6B_OFFSET;
    /// Bit mask for the `PROTOCOL` field.
    pub const PROTOCOL_MASK: u8 = 0xF;

    /// Get the protocol.
    ///
    /// This returns an `Err(u8)` with the protocol bits if the protocol bits
    /// do not match a valid protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{Protocol, SocketMode};
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert_eq!(sn_mr.protocol(), Ok(Protocol::Closed));
    /// ```
    pub const fn protocol(&self) -> Result<Protocol, u8> {
        Protocol::from_raw(self.0 & Self::PROTOCOL_MASK)
    }

    /// Set the protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::{Protocol, SocketMode};
    ///
    /// const SN_MR: SocketMode = SocketMode::DEFAULT.set_protocol(Protocol::Tcp);
    /// assert_eq!(SN_MR.protocol(), Ok(Protocol::Tcp));
    /// ```
    pub const fn set_protocol(mut self, protocol: Protocol) -> Self {
        self.0 = (self.0 & 0xF0) | ((protocol as u8) & 0xF);
        self
    }

    /// Multicasting.
    ///
    /// This applies only for a socket with the UDP protocol.
    ///
    /// To use multicasting [`Registers::sn_dipr`] and [`Registers::sn_dport`]
    /// should be configured with the multicast group IP and port number
    /// before the socket is opened.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.multi_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_multi();
    /// assert!(sn_mr.multi_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_multi();
    /// assert!(!sn_mr.multi_enabled());
    /// ```
    ///
    /// [`Registers::sn_dipr`]: crate::Registers::sn_dipr
    /// [`Registers::sn_dport`]: crate::Registers::sn_dport
    pub const fn multi_enabled(&self) -> bool {
        self.0 & Self::MULTI_MASK != 0
    }

    /// Enable multicasting.
    #[must_use = "enable_multi returns a modified SocketMode"]
    pub const fn enable_multi(mut self) -> Self {
        self.0 |= Self::MULTI_MASK;
        self
    }

    /// Disable multicasting.
    #[must_use = "disable_multi returns a modified SocketMode"]
    pub const fn disable_multi(mut self) -> Self {
        self.0 &= !Self::MULTI_MASK;
        self
    }

    /// MAC filter.
    ///
    /// This applies only for a socket with the MACRAW protocol.
    ///
    /// When enabled the W5500 can only receive broadcasting packets sent to
    /// itself.
    /// When disabled the W5500 can receive all packets.
    /// If you want to implement a hybrid TCP/IP stack it is recommended that
    /// this is enabled for reducing host overhead to process all the received
    /// packets.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.mfen_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_mfen();
    /// assert!(sn_mr.mfen_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_mfen();
    /// assert!(!sn_mr.mfen_enabled());
    /// ```
    pub const fn mfen_enabled(&self) -> bool {
        self.0 & Self::MFEN_MASK != 0
    }

    /// Enable MAC filter.
    #[must_use = "enable_mfen returns a modified SocketMode"]
    pub const fn enable_mfen(mut self) -> Self {
        self.0 |= Self::MFEN_MASK;
        self
    }

    /// Disable MAC filter.
    #[must_use = "disable_mfen returns a modified SocketMode"]
    pub const fn disable_mfen(mut self) -> Self {
        self.0 &= !Self::MFEN_MASK;
        self
    }

    /// Broadcast blocking.
    ///
    /// This applies only for a socket with the MACRAW or UDP protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.bcastb_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_bcastb();
    /// assert!(sn_mr.bcastb_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_bcastb();
    /// assert!(!sn_mr.bcastb_enabled());
    /// ```
    pub const fn bcastb_enabled(&self) -> bool {
        self.0 & Self::BCASTB_MASK != 0
    }

    /// Enable broadcast blocking.
    #[must_use = "enable_bcastb returns a modified SocketMode"]
    pub const fn enable_bcastb(mut self) -> Self {
        self.0 |= Self::BCASTB_MASK;
        self
    }

    /// Disable broadcast blocking.
    #[must_use = "disable_bcastb returns a modified SocketMode"]
    pub const fn disable_bcastb(mut self) -> Self {
        self.0 &= !Self::BCASTB_MASK;
        self
    }

    /// Use no delayed ACK.
    ///
    /// This applies only for a socket with the TCP protocol.
    ///
    /// When enabled the ACK packet is sent without delay as soon as a data
    /// packet is received from a peer.
    /// When disabled the ACK packet is sent after waiting for the time
    /// configured by [`rtr`].
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.nd_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_nd();
    /// assert!(sn_mr.nd_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_nd();
    /// assert!(!sn_mr.nd_enabled());
    /// ```
    ///
    /// [`rtr`]: crate::Registers::rtr
    pub const fn nd_enabled(&self) -> bool {
        self.0 & Self::ND_MASK != 0
    }

    /// Disable no delayed ACK.
    #[must_use = "disable_nd returns a modified SocketMode"]
    pub const fn disable_nd(mut self) -> Self {
        self.0 &= !Self::ND_MASK;
        self
    }

    /// Enable no delayed ACK.
    #[must_use = "enable_nd returns a modified SocketMode"]
    pub const fn enable_nd(mut self) -> Self {
        self.0 |= Self::ND_MASK;
        self
    }

    /// Multicast IGMP version.
    ///
    /// This applies only for a socket with the UDP protocol.
    ///
    /// This field configures the version for IGMP messages (join/leave/report).
    ///
    /// * `false` IGMP version 2
    /// * `true` IGMP version 1
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.mc());
    /// let sn_mr: SocketMode = sn_mr.set_igmp_v1();
    /// assert!(sn_mr.mc());
    /// let sn_mr: SocketMode = sn_mr.set_igmp_v2();
    /// assert!(!sn_mr.mc());
    /// ```
    pub const fn mc(&self) -> bool {
        self.0 & Self::MC_MASK != 0
    }

    /// Set IGMP version 1.
    #[must_use = "set_igmp_v1 returns a modified SocketMode"]
    pub const fn set_igmp_v1(mut self) -> Self {
        self.0 |= Self::MC_MASK;
        self
    }

    /// Set IGMP version 2.
    #[must_use = "set_igmp_v2 returns a modified SocketMode"]
    pub const fn set_igmp_v2(mut self) -> Self {
        self.0 &= !Self::MC_MASK;
        self
    }

    /// Multicast blocking.
    ///
    /// This applies only for a socket with the [MACRAW] protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.mmb_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_mmb();
    /// assert!(sn_mr.mmb_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_mmb();
    /// assert!(!sn_mr.mmb_enabled());
    /// ```
    ///
    /// [MACRAW]: crate::Protocol::Macraw
    pub const fn mmb_enabled(&self) -> bool {
        self.0 & Self::MMB_MASK != 0
    }

    /// Enable multicast blocking.
    #[must_use = "enable_mmb returns a modified SocketMode"]
    pub const fn enable_mmb(mut self) -> Self {
        self.0 |= Self::MMB_MASK;
        self
    }

    /// Disable multicast blocking.
    #[must_use = "disable_mmb returns a modified SocketMode"]
    pub const fn disable_mmb(mut self) -> Self {
        self.0 &= !Self::MMB_MASK;
        self
    }

    /// Unicast blocking enabled.
    ///
    /// This applies only for a socket with the UDP protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.ucastb_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_ucastb();
    /// assert!(sn_mr.ucastb_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_ucastb();
    /// assert!(!sn_mr.ucastb_enabled());
    /// ```
    pub const fn ucastb_enabled(&self) -> bool {
        self.0 & Self::UCASTB_MASK != 0
    }

    /// Enable unicast blocking.
    #[must_use = "enable_ucastb returns a modified SocketMode"]
    pub const fn enable_ucastb(mut self) -> Self {
        self.0 |= Self::UCASTB_MASK;
        self
    }

    /// Disable unicast blocking.
    #[must_use = "disable_ucastb returns a modified SocketMode"]
    pub const fn disable_ucastb(mut self) -> Self {
        self.0 &= !Self::UCASTB_MASK;
        self
    }

    /// IPV6 packet blocking.
    ///
    /// This applies only for a socket with the [MACRAW] protocol.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketMode;
    ///
    /// let sn_mr: SocketMode = SocketMode::DEFAULT;
    /// assert!(!sn_mr.mip6b_enabled());
    /// let sn_mr: SocketMode = sn_mr.enable_mip6b();
    /// assert!(sn_mr.mip6b_enabled());
    /// let sn_mr: SocketMode = sn_mr.disable_mip6b();
    /// assert!(!sn_mr.mip6b_enabled());
    /// ```
    ///
    /// [MACRAW]: crate::Protocol::Macraw
    pub const fn mip6b_enabled(&self) -> bool {
        self.0 & Self::MIP6B_MASK != 0
    }

    /// Enable IPV6 packet blocking.
    #[must_use = "enable_mip6b returns a modified SocketMode"]
    pub const fn enable_mip6b(mut self) -> Self {
        self.0 |= Self::MIP6B_MASK;
        self
    }

    /// Disable IPV6 packet blocking.
    #[must_use = "disable_mip6b returns a modified SocketMode"]
    pub const fn disable_mip6b(mut self) -> Self {
        self.0 &= !Self::MIP6B_MASK;
        self
    }
}

impl ::core::fmt::Display for SocketMode {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("SocketMode")
            .field("protocol", &self.protocol())
            .field("multi_enabled", &self.multi_enabled())
            .field("mfen_enabled", &self.mfen_enabled())
            .field("bcastb_enabled", &self.bcastb_enabled())
            .field("nd_enabled", &self.nd_enabled())
            .field("mc", &self.mc())
            .field("mmb_enabled", &self.mmb_enabled())
            .field("ucastb_enabled", &self.ucastb_enabled())
            .field("mip6b_enabled", &self.mip6b_enabled())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for SocketMode {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "SocketMode {{ protocol: {}, multi_enabled: {}, mfen_enabled: {}, bcastb_enabled: {}, nd_enabled: {}, mc: {}, mmb_enabled: {}, ucastb_enabled: {}, mip6b_enabled: {} }}",
            self.protocol(),
            self.multi_enabled(),
            self.mfen_enabled(),
            self.bcastb_enabled(),
            self.nd_enabled(),
            self.mc(),
            self.mmb_enabled(),
            self.ucastb_enabled(),
            self.mip6b_enabled(),
        );
    }
}

/// Socket Interrupt Register (Sn_IR).
///
/// Indicated the socket status, such as connection, termination,
/// receiving data, and timeout.
///
/// This is used by the [`Registers::sn_ir`] and
/// [`Registers::set_sn_ir`] methods.
///
/// [`Registers::sn_ir`]: crate::Registers::sn_ir
/// [`Registers::set_sn_ir`]: crate::Registers::set_sn_ir
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct SocketInterrupt(u8);
impl_boilerplate_for!(SocketInterrupt);

impl SocketInterrupt {
    /// Socket interrupt status register (Sn_IR) reset value.
    pub const RESET: u8 = 0x00;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// assert_eq!(SocketInterrupt::DEFAULT, SocketInterrupt::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Bit offset for the `CON` field.
    pub const CON_OFFSET: u8 = 0;
    /// Bit offset for the `DISCON` field.
    pub const DISCON_OFFSET: u8 = 1;
    /// Bit offset for the `RECV` field.
    pub const RECV_OFFSET: u8 = 2;
    /// Bit offset for the `TIMEOUT` field.
    pub const TIMEOUT_OFFSET: u8 = 3;
    /// Bit offset for the `SENDOK` field.
    pub const SENDOK_OFFSET: u8 = 4;

    /// Bit mask for the `CON` field.
    pub const CON_MASK: u8 = 1 << Self::CON_OFFSET;
    /// Bit mask for the `DISCON` field.
    pub const DISCON_MASK: u8 = 1 << Self::DISCON_OFFSET;
    /// Bit mask for the `RECV` field.
    pub const RECV_MASK: u8 = 1 << Self::RECV_OFFSET;
    /// Bit mask for the `TIMEOUT` field.
    pub const TIMEOUT_MASK: u8 = 1 << Self::TIMEOUT_OFFSET;
    /// Bit mask for the `SENDOK` field.
    pub const SENDOK_MASK: u8 = 1 << Self::SENDOK_OFFSET;

    const ALL_MASK: u8 = Self::CON_MASK
        | Self::DISCON_MASK
        | Self::RECV_MASK
        | Self::TIMEOUT_MASK
        | Self::SENDOK_MASK;

    /// Get the value of the `CON` interrupt.
    ///
    /// This is issued once when the connection with the peer is successful.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// let sir: SocketInterrupt = SocketInterrupt::DEFAULT;
    /// assert!(!sir.con_raised());
    /// # assert!(sir.clear_con().con_raised());
    /// ```
    pub const fn con_raised(&self) -> bool {
        self.0 & Self::CON_MASK != 0
    }

    /// Clear the `CON` interrupt by writing `1`.
    #[must_use = "clear_con returns a modified SocketInterrupt"]
    pub const fn clear_con(mut self) -> Self {
        self.0 |= Self::CON_MASK;
        self
    }

    /// Get the value of the `DISCON` interrupt.
    ///
    /// This is issued when FIN or FIN/ACK packet is received from a peer.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// let sir: SocketInterrupt = SocketInterrupt::DEFAULT;
    /// assert!(!sir.discon_raised());
    /// # assert!(sir.clear_discon().discon_raised());
    /// ```
    pub const fn discon_raised(&self) -> bool {
        self.0 & Self::DISCON_MASK != 0
    }

    /// Clear the `DISCON` interrupt by writing `1`.
    #[must_use = "clear_discon returns a modified SocketInterrupt"]
    pub const fn clear_discon(mut self) -> Self {
        self.0 |= Self::DISCON_MASK;
        self
    }

    /// Get the value of the `RECV` interrupt.
    ///
    /// This is issued whenever data is received from a peer.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// let sir: SocketInterrupt = SocketInterrupt::DEFAULT;
    /// assert!(!sir.recv_raised());
    /// # assert!(sir.clear_recv().recv_raised());
    /// ```
    pub const fn recv_raised(&self) -> bool {
        self.0 & Self::RECV_MASK != 0
    }

    /// Clear the `RECV` interrupt by writing `1`.
    #[must_use = "clear_recv returns a modified SocketInterrupt"]
    pub const fn clear_recv(mut self) -> Self {
        self.0 |= Self::RECV_MASK;
        self
    }

    /// Get the value of the `TIMEOUT` interrupt.
    ///
    /// This is issued when ARP<sub>TO</sub> or TCP<sub>TO</sub> occurs.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// let sir: SocketInterrupt = SocketInterrupt::DEFAULT;
    /// assert!(!sir.timeout_raised());
    /// # assert!(sir.clear_timeout().timeout_raised());
    /// ```
    pub const fn timeout_raised(&self) -> bool {
        self.0 & Self::TIMEOUT_MASK != 0
    }

    /// Clear the `TIMEOUT` interrupt by writing `1`.
    #[must_use = "clear_timeout returns a modified SocketInterrupt"]
    pub const fn clear_timeout(mut self) -> Self {
        self.0 |= Self::TIMEOUT_MASK;
        self
    }

    /// Get the value of the `SENDOK` interrupt.
    ///
    /// This is issued when [SEND] command is completed.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// let sir: SocketInterrupt = SocketInterrupt::DEFAULT;
    /// assert!(!sir.sendok_raised());
    /// # assert!(sir.clear_sendok().sendok_raised());
    /// ```
    ///
    /// [SEND]: crate::SocketCommand::Send
    pub const fn sendok_raised(&self) -> bool {
        self.0 & Self::SENDOK_MASK != 0
    }

    /// Clear the `SENDOK` interrupt by writing `1`.
    #[must_use = "clear_sendok returns a modified SocketInterrupt"]
    pub const fn clear_sendok(mut self) -> Self {
        self.0 |= Self::SENDOK_MASK;
        self
    }

    /// Returns `true` if any interrupt is raised.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterrupt;
    ///
    /// assert!(!SocketInterrupt::DEFAULT.any_raised());
    /// ```
    pub const fn any_raised(&self) -> bool {
        self.0 & Self::ALL_MASK != 0
    }
}

impl ::core::fmt::Display for SocketInterrupt {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("SocketInterrupt")
            .field("con_raised", &self.con_raised())
            .field("discon_raised", &self.discon_raised())
            .field("recv_raised", &self.recv_raised())
            .field("timeout_raised", &self.timeout_raised())
            .field("sendok_raised", &self.sendok_raised())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for SocketInterrupt {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "SocketInterrupt {{ con_raised: {}, discon_raised: {}, recv_raised: {}, timeout_raised: {}, sendok_raised: {} }}",
            self.con_raised(),
            self.discon_raised(),
            self.recv_raised(),
            self.timeout_raised(),
            self.sendok_raised(),
        );
    }
}

/// Socket Interrupt Mask Register (Sn_IMR).
///
/// This is used by the [`Registers::sn_imr`] and
/// [`Registers::set_sn_imr`] methods.
///
/// See the [`SocketInterrupt`] structure for more information about the
/// individual interrupts.
///
/// [`Registers::sn_imr`]: crate::Registers::sn_imr
/// [`Registers::set_sn_imr`]: crate::Registers::set_sn_imr
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct SocketInterruptMask(u8);
impl_boilerplate_for!(SocketInterruptMask);

impl SocketInterruptMask {
    /// Socket interrupt mask register (Sn_IMR) reset value.
    pub const RESET: u8 = 0xFF;

    /// Default value.
    ///
    /// This is the same as `default`, but as a `const` value.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// assert_eq!(SocketInterruptMask::DEFAULT, SocketInterruptMask::default());
    /// ```
    pub const DEFAULT: Self = Self(Self::RESET);

    /// Mask all socket interrupts.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// assert!(SocketInterruptMask::ALL_MASKED.con_masked());
    /// assert!(SocketInterruptMask::ALL_MASKED.discon_masked());
    /// assert!(SocketInterruptMask::ALL_MASKED.recv_masked());
    /// assert!(SocketInterruptMask::ALL_MASKED.timeout_masked());
    /// assert!(SocketInterruptMask::ALL_MASKED.sendok_masked());
    /// ```
    pub const ALL_MASKED: SocketInterruptMask = SocketInterruptMask(0xE0);

    /// Check if the `CON` interrupt is masked.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// let simr: SocketInterruptMask = SocketInterruptMask::DEFAULT;
    /// assert!(!simr.con_masked());
    /// let simr: SocketInterruptMask = simr.mask_con();
    /// assert!(simr.con_masked());
    /// let simr: SocketInterruptMask = simr.unmask_con();
    /// assert!(!simr.con_masked());
    /// ```
    pub const fn con_masked(&self) -> bool {
        self.0 & SocketInterrupt::CON_MASK == 0
    }

    /// Unmask the `CON` interrupt.
    #[must_use = "unmask_con returns a modified SocketInterruptMask"]
    pub const fn unmask_con(mut self) -> Self {
        self.0 |= SocketInterrupt::CON_MASK;
        self
    }

    /// Mask the `CON` interrupt.
    #[must_use = "mask_con returns a modified SocketInterruptMask"]
    pub const fn mask_con(mut self) -> Self {
        self.0 &= !SocketInterrupt::CON_MASK;
        self
    }

    /// Check if the `DISCON` interrupt is masked.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// let simr: SocketInterruptMask = SocketInterruptMask::DEFAULT;
    /// assert!(!simr.discon_masked());
    /// let simr: SocketInterruptMask = simr.mask_discon();
    /// assert!(simr.discon_masked());
    /// let simr: SocketInterruptMask = simr.unmask_discon();
    /// assert!(!simr.discon_masked());
    /// ```
    pub const fn discon_masked(&self) -> bool {
        self.0 & SocketInterrupt::DISCON_MASK == 0
    }

    /// Unmask the `DISCON` interrupt.
    #[must_use = "unmask_discon returns a modified SocketInterruptMask"]
    pub const fn unmask_discon(mut self) -> Self {
        self.0 |= SocketInterrupt::DISCON_MASK;
        self
    }

    /// Mask the `DISCON` interrupt.
    #[must_use = "mask_discon returns a modified SocketInterruptMask"]
    pub const fn mask_discon(mut self) -> Self {
        self.0 &= !SocketInterrupt::DISCON_MASK;
        self
    }

    /// Check if the `RECV` interrupt is masked.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// let simr: SocketInterruptMask = SocketInterruptMask::DEFAULT;
    /// assert!(!simr.recv_masked());
    /// let simr: SocketInterruptMask = simr.mask_recv();
    /// assert!(simr.recv_masked());
    /// let simr: SocketInterruptMask = simr.unmask_recv();
    /// assert!(!simr.recv_masked());
    /// ```
    pub const fn recv_masked(&self) -> bool {
        self.0 & SocketInterrupt::RECV_MASK == 0
    }

    /// Unmask the `RECV` interrupt.
    #[must_use = "unmask_recv returns a modified SocketInterruptMask"]
    pub const fn unmask_recv(mut self) -> Self {
        self.0 |= SocketInterrupt::RECV_MASK;
        self
    }

    /// Mask the `RECV` interrupt.
    #[must_use = "mask_recv returns a modified SocketInterruptMask"]
    pub const fn mask_recv(mut self) -> Self {
        self.0 &= !SocketInterrupt::RECV_MASK;
        self
    }

    /// Check if the `TIMEOUT` interrupt is masked.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// let simr: SocketInterruptMask = SocketInterruptMask::DEFAULT;
    /// assert!(!simr.timeout_masked());
    /// let simr: SocketInterruptMask = simr.mask_timeout();
    /// assert!(simr.timeout_masked());
    /// let simr: SocketInterruptMask = simr.unmask_timeout();
    /// assert!(!simr.timeout_masked());
    /// ```
    pub const fn timeout_masked(&self) -> bool {
        self.0 & SocketInterrupt::TIMEOUT_MASK == 0
    }

    /// Unmask the `TIMEOUT` interrupt.
    #[must_use = "unmask_timeout returns a modified SocketInterruptMask"]
    pub const fn unmask_timeout(mut self) -> Self {
        self.0 |= SocketInterrupt::TIMEOUT_MASK;
        self
    }

    /// Mask the `TIMEOUT` interrupt.
    #[must_use = "mask_timeout returns a modified SocketInterruptMask"]
    pub const fn mask_timeout(mut self) -> Self {
        self.0 &= !SocketInterrupt::TIMEOUT_MASK;
        self
    }

    /// Check if the `SENDOK` interrupt is masked.
    ///
    /// # Example
    ///
    /// ```
    /// use w5500_ll::SocketInterruptMask;
    ///
    /// let simr: SocketInterruptMask = SocketInterruptMask::DEFAULT;
    /// assert!(!simr.sendok_masked());
    /// let simr: SocketInterruptMask = simr.mask_sendok();
    /// assert!(simr.sendok_masked());
    /// let simr: SocketInterruptMask = simr.unmask_sendok();
    /// assert!(!simr.sendok_masked());
    /// ```
    pub const fn sendok_masked(&self) -> bool {
        self.0 & SocketInterrupt::SENDOK_MASK == 0
    }

    /// Unmask the `SENDOK` interrupt.
    #[must_use = "unmask_sendok returns a modified SocketInterruptMask"]
    pub const fn unmask_sendok(mut self) -> Self {
        self.0 |= SocketInterrupt::SENDOK_MASK;
        self
    }

    /// Mask the `SENDOK` interrupt.
    #[must_use = "mask_sendok returns a modified SocketInterruptMask"]
    pub const fn mask_sendok(mut self) -> Self {
        self.0 &= !SocketInterrupt::SENDOK_MASK;
        self
    }
}

impl ::core::fmt::Display for SocketInterruptMask {
    fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        f.debug_struct("SocketInterruptMask")
            .field("con_masked", &self.con_masked())
            .field("discon_masked", &self.discon_masked())
            .field("recv_masked", &self.recv_masked())
            .field("timeout_masked", &self.timeout_masked())
            .field("sendok_masked", &self.sendok_masked())
            .finish()
    }
}

#[cfg(feature = "defmt")]
impl defmt::Format for SocketInterruptMask {
    fn format(&self, fmt: defmt::Formatter) {
        defmt::write!(
            fmt,
            "SocketInterruptMask {{ con_masked: {}, discon_masked: {}, recv_masked: {}, timeout_masked: {}, sendok_masked: {} }}",
            self.con_masked(),
            self.discon_masked(),
            self.recv_masked(),
            self.timeout_masked(),
            self.sendok_masked(),
        );
    }
}