w5100s.h
89.5 KB
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
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
//* ****************************************************************************
//! \file w5100.h
//! \brief W5100 HAL Header File.
//! \version 1.0.0
//! \date 2013/10/21
//! \par Revision history
//! <2013/10/21> 1st Release
//! \author MidnightCow
//! \copyright
//!
//! Copyright (c) 2013, WIZnet Co., LTD.
//! All rights reserved.
//!
//! Redistribution and use in source and binary forms, with or without
//! modification, are permitted provided that the following conditions
//! are met:
//!
//! * Redistributions of source code must retain the above copyright
//! notice, this list of conditions and the following disclaimer.
//! * Redistributions in binary form must reproduce the above copyright
//! notice, this list of conditions and the following disclaimer in the
//! documentation and/or other materials provided with the distribution.
//! * Neither the name of the <ORGANIZATION> nor the names of its
//! contributors may be used to endorse or promote products derived
//! from this software without specific prior written permission.
//!
//! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
//! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
//! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
//! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
//! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
//! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
//! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
//! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
//! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
//! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
//! THE POSSIBILITY OF SUCH DAMAGE.
//
//*****************************************************************************
#ifndef _W5100S_H_
#define _W5100S_H_
#include <stdint.h>
#include "wizchip_conf.h"
#define _WIZCHIP_SN_BASE_ (0x0400)
#define _WIZCHIP_SN_SIZE_ (0x0100)
#define _WIZCHIP_IO_TXBUF_ (0x4000) /* Internal Tx buffer address of the iinchip */
#define _WIZCHIP_IO_RXBUF_ (0x6000) /* Internal Rx buffer address of the iinchip */
#define WIZCHIP_CREG_BLOCK 0x00 ///< Common register block
#define WIZCHIP_SREG_BLOCK(N) (_WIZCHIP_SN_BASE_+ _WIZCHIP_SN_SIZE_*N) ///< Socket N register block
#define WIZCHIP_OFFSET_INC(ADDR, N) (ADDR + N) ///< Increase offset address
#if (_WIZCHIP_IO_MODE_ == _WIZCHIP_IO_MODE_BUS_INDIR_)
#define IDM_OR ((_WIZCHIP_IO_BASE + 0x0000))
#define IDM_AR0 ((_WIZCHIP_IO_BASE_ + 0x0001))
#define IDM_AR1 ((_WIZCHIP_IO_BASE_ + 0x0002))
#define IDM_DR ((_WIZCHIP_IO_BASE_ + 0x0003))
#define _W5100S_IO_BASE_ 0x0000
#elif (_WIZCHIP_IO_MODE_ & _WIZCHIP_IO_MODE_SPI_)
#define _W5100S_IO_BASE_ 0x0000
#endif
///////////////////////////////////////
// Definition For Legacy Chip Driver //
///////////////////////////////////////
#define IINCHIP_READ(ADDR) WIZCHIP_READ(ADDR) ///< The defined for legacy chip driver
#define IINCHIP_WRITE(ADDR,VAL) WIZCHIP_WRITE(ADDR,VAL) ///< The defined for legacy chip driver
#define IINCHIP_READ_BUF(ADDR,BUF,LEN) WIZCHIP_READ_BUF(ADDR,BUF,LEN) ///< The defined for legacy chip driver
#define IINCHIP_WRITE_BUF(ADDR,BUF,LEN) WIZCHIP_WRITE(ADDR,BUF,LEN) ///< The defined for legacy chip driver
//----------- defgroup --------------------------------
/**
* @defgroup W5100 W5100
* @brief WHIZCHIP register defines and I/O functions of @b W5100.
*
* - @ref WIZCHIP_register_W5100 : @ref Common_register_group_W5100S and @ref Socket_register_group_W5100S
* - @ref WIZCHIP_IO_Functions_W5100 : @ref Basic_IO_function_W5100S, @ref Common_register_access_function_W5100S and @ref Socket_register_group_W5100S
*/
/**
* @defgroup WIZCHIP_register_W5100 WIZCHIP register
* @ingroup W5100
* @brief WIZCHIP register defines register group of <b> W5100 </b>.
*
* - \ref Common_register_group_W5100S : Common register group W5100
* - \ref Socket_register_group_W5100S : \c SOCKET n register group W5100
*/
/**
* @defgroup WIZCHIP_IO_Functions_W5100 WIZCHIP I/O functions
* @ingroup W5100
* @brief This supports the basic I/O functions for \ref WIZCHIP_register_W5100.
*
* - <b> Basic I/O function </b> \n
* WIZCHIP_READ(), WIZCHIP_WRITE(), WIZCHIP_READ_BUF(), WIZCHIP_WRITE_BUF() \n\n
*
* - \ref Common_register_group_W5100S <b>access functions</b> \n
* -# @b Mode \n
* getMR(), setMR()
* -# @b Interrupt \n
* getIR(), setIR(), getIMR(), setIMR(),
* -# <b> Network Information </b> \n
* getSHAR(), setSHAR(), getGAR(), setGAR(), getSUBR(), setSUBR(), getSIPR(), setSIPR()
* -# @b Retransmission \n
* getRCR(), setRCR(), getRTR(), setRTR()
* -# @b PPPoE \n
* getPTIMER(), setPTIMER(), getPMAGIC(), getPMAGIC()
*
* - \ref Socket_register_group_W5100S <b>access functions</b> \n
* -# <b> SOCKET control</b> \n
* getSn_MR(), setSn_MR(), getSn_CR(), setSn_CR(), getSn_IR(), setSn_IR()
* -# <b> SOCKET information</b> \n
* getSn_SR(), getSn_DHAR(), setSn_DHAR(), getSn_PORT(), setSn_PORT(), getSn_DIPR(), setSn_DIPR(), getSn_DPORT(), setSn_DPORT()
* getSn_MSSR(), setSn_MSSR()
* -# <b> SOCKET communication </b> \n
* getSn_RXMEM_SIZE(), setSn_RXMEM_SIZE(), getSn_TXMEM_SIZE(), setSn_TXMEM_SIZE() \n
* getSn_TX_RD(), getSn_TX_WR(), setSn_TX_WR() \n
* getSn_RX_RD(), setSn_RX_RD(), getSn_RX_WR() \n
* getSn_TX_FSR(), getSn_RX_RSR()
* -# <b> IP header field </b> \n
* getSn_FRAG(), setSn_FRAG(), getSn_TOS(), setSn_TOS() \n
* getSn_TTL(), setSn_TTL()
*/
/**
* @defgroup Common_register_group_W5100S Common register
* @ingroup WIZCHIP_register_W5100
* @brief Common register group\n
* It set the basic for the networking\n
* It set the configuration such as interrupt, network information, ICMP, etc.
* @details
* @sa MR : Mode register.
* @sa GAR, SUBR, SHAR, SIPR
* @sa IR, Sn_IR, _IMR_ : Interrupt.
* @sa _RTR_, _RCR_ : Data retransmission.
* @sa PTIMER, PMAGIC : PPPoE.
*/
/**
* @defgroup Socket_register_group_W5100S Socket register
* @ingroup WIZCHIP_register_W5100
* @brief Socket register group\n
* Socket register configures and control SOCKETn which is necessary to data communication.
* @details
* @sa Sn_MR, Sn_CR, Sn_IR : SOCKETn Control
* @sa Sn_SR, Sn_PORT, Sn_DHAR, Sn_DIPR, Sn_DPORT : SOCKETn Information
* @sa Sn_MSSR, Sn_TOS, Sn_TTL, Sn_FRAGR : Internet protocol.
* @sa Sn_RXMEM_SIZE, Sn_TXMEM_SIZE, Sn_TX_FSR, Sn_TX_RD, Sn_TX_WR, Sn_RX_RSR, Sn_RX_RD, Sn_RX_WR : Data communication
*/
/**
* @defgroup Basic_IO_function_W5100S Basic I/O function
* @ingroup WIZCHIP_IO_Functions_W5100
* @brief These are basic input/output functions to read values from register or write values to register.
*/
/**
* @defgroup Common_register_access_function_W5100S Common register access functions
* @ingroup WIZCHIP_IO_Functions_W5100
* @brief These are functions to access <b>common registers</b>.
*/
/**
* @defgroup Socket_register_access_function_W5100S Socket register access functions
* @ingroup WIZCHIP_IO_Functions_W5100
* @brief These are functions to access <b>socket registers</b>.
*/
//-----------------------------------------------------------------------------------
//----------------------------- W5100 Common Registers IOMAP -----------------------------
/**
* @ingroup Common_register_group_W5100S
* @brief Mode Register address(R/W)\n
* \ref MR is used for S/W reset, ping block mode, PPPoE mode and etc.
* @details Each bit of \ref MR defined as follows.
* <table>
* <tr> <td>7</td> <td>6</td> <td>5</td> <td>4</td> <td>3</td> <td>2</td> <td>1</td> <td>0</td> </tr>
* <tr> <td>RST</td> <td>Reserved</td> <td>WOL</td> <td>PB</td> <td>PPPoE</td> <td>Reserved</td> <td>AI</td> <td>IND</td> </tr>
* </table>
* - \ref MR_RST : Reset
* - \ref MR_PB : Ping block
* - \ref MR_PPPOE : PPPoE mode
* - \ref MR_AI : Address Auto-Increment in Indirect Bus Interface
* - \ref MR_IND : Indirect Bus Interface mode
*/
#if _WIZCHIP_IO_MODE_ == _WIZCHIP_IO_MODE_BUS_INDIR_
#define MR (_WIZCHIP_IO_BASE_ + (0x0000)) // Mode
#else
#define MR (_W5100S_IO_BASE_ + (0x0000)) // Mode
#endif
/**
* @ingroup Common_register_group_W5100S
* @brief Gateway IP Register address(R/W)
* @details \ref GAR configures the default gateway address.
*/
#define GAR (_W5100S_IO_BASE_ + (0x0001)) // GW Address
/**
* @ingroup Common_register_group_W5100S
* @brief Subnet mask Register address(R/W)
* @details \ref SUBR configures the subnet mask address.
*/
#define SUBR (_W5100S_IO_BASE_ + (0x0005)) // SN Mask Address
/**
* @ingroup Common_register_group_W5100S
* @brief Source MAC Register address(R/W)
* @details \ref SHAR configures the source hardware address.
*/
#define SHAR (_W5100S_IO_BASE_ + (0x0009)) // Source Hardware Address
/**
* @ingroup Common_register_group_W5100S
* @brief Source IP Register address(R/W)
* @details \ref SIPR configures the source IP address.
*/
#define SIPR (_W5100S_IO_BASE_ + (0x000F)) // Source IP Address
// Reserved (_W5100S_IO_BASE_ + (0x0013))
// Reserved (_W5100S_IO_BASE_ + (0x0014))
/**
* @ingroup Common_register_group_W5100S
* @brief Interrupt Register(R/W)
* @details \ref IR indicates the interrupt status. Each bit of \ref IR will be still until the bit will be written to by the host.
* If \ref IR is not equal to x00 INTn PIN is asserted to low until it is x00\n\n
* Each bit of \ref IR defined as follows.
* <table>
* <tr> <td>7</td> <td>6</td> <td>5</td> <td>4</td> <td>3</td> <td>2</td> <td>1</td> <td>0</td> </tr>
* <tr> <td>CONFLICT</td> <td>UNREACH</td> <td>PPPoE</td> <td>Reserved</td> <td>S3_INT</td> <td>S2_INT</td> <td>S1_INT</td> <td>S0_INT</td> </tr>
* </table>
* - \ref IR_CONFLICT : IP conflict
* - \ref IR_UNREACH : Destination unreachable
* - \ref IR_PPPoE : PPPoE connection close
* - \ref IR_SOCK(3) : SOCKET 3 Interrupt
* - \ref IR_SOCK(2) : SOCKET 2 Interrupt
* - \ref IR_SOCK(1) : SOCKET 1 Interrupt
* - \ref IR_SOCK(0) : SOCKET 0 Interrupt
*/
#define IR (_W5100S_IO_BASE_ + (0x0015)) // Interrupt
/**
* @ingroup Common_register_group_W5100S
* @brief Socket Interrupt Mask Register(R/W)
* @details Each bit of \ref _IMR_ corresponds to each bit of \ref IR.
* When a bit of \ref _IMR_ is and the corresponding bit of \ref IR is set, Interrupt will be issued.
*/
#define _IMR_ (_W5100S_IO_BASE_ + (0x0016)) // Socket Interrupt Mask
/**
* @ingroup Common_register_group_W5100S
* @brief Timeout register address( 1 is 100us )(R/W)
* @details \ref _RTR_ configures the retransmission timeout period. The unit of timeout period is 100us and the default of \ref _RTR_ is x07D0or 000
* And so the default timeout period is 200ms(100us X 2000). During the time configured by \ref _RTR_, W5100 waits for the peer response
* to the packet that is transmitted by \ref Sn_CR (CONNECT, DISCON, CLOSE, SEND, SEND_MAC, SEND_KEEP command).
* If the peer does not respond within the \ref _RTR_ time, W5100 retransmits the packet or issues timeout.
*/
#define _RTR_ (_W5100S_IO_BASE_ + (0x0017)) // Retry Time
/**
* @ingroup Common_register_group_W5100S
* @brief Retry count register(R/W)
* @details \ref _RCR_ configures the number of time of retransmission.
* When retransmission occurs as many as ref _RCR_+1 Timeout interrupt is issued (\ref Sn_IR_TIMEOUT = '1').
*/
#define _RCR_ (_W5100S_IO_BASE_ + (0x0019)) // Retry Count
#define RMSR (_W5100S_IO_BASE_ + (0x001A)) // Receicve Memory Size
#define TMSR (_W5100S_IO_BASE_ + (0x001B)) // Trnasmit Memory Size
/**
* @ingroup Common_register_group_W5100S
* @brief PPP LCP Request Timer register in PPPoE mode(R)
* @details \ref PATR notifies authentication method that has been agreed at the connection with
* PPPoE Server. W5100 supports two types of Authentication method - PAP and CHAP.
*/
#define PATR (_W5100S_IO_BASE_ + (0x001C))
/*
* @ingroup Common_register_group_W5100S
* @brief IR2
* @details \reg
*/
#define IR2 (_W5100S_IO_BASE_ + (0x0020))
/*
* @ingroup Common_register_group_W5100S
* @brief IMR2
* @details \reg
*/
#define IMR2 (_W5100S_IO_BASE_ + (0x0021))
/**
* @ingroup Common_register_group_W5100S
* @brief PPP LCP Request Timer register in PPPoE mode(R)
* @details \ref PTIMER configures the time for sending LCP echo request. The unit of time is 25ms.
*/
#define PTIMER (_W5100S_IO_BASE_ + (0x0028)) // PPP LCP RequestTimer
/**
* @ingroup Common_register_group_W5100S
* @brief PPP LCP Magic number register in PPPoE mode(R)
* @details \ref PMAGIC configures the 4bytes magic number to be used in LCP negotiation.
*/
#define PMAGIC (_W5100S_IO_BASE_ + (0x0029)) // PPP LCP Magic number
#define UIPR (_W5100S_IO_BASE_ + (0x002A))
#define UPORTR (_W5100S_IO_BASE_ + (0x002E))
/* register for W5100S only */
/*------------------------------------------ Common registers ------------------------------------------*/
/*
* @ingroup Common_register_group_W5100S
* @brief MR2
* @details \reg
*/
#define MR2 (_W5100S_IO_BASE_ + (0x0030))
/*
* @ingroup Common_register_group_W5100S
* @brief MR2
* @details \reg
*/
#define PHAR (_W5100S_IO_BASE_ + (0x0032))
/*
* @ingroup Common_register_group_W5100S
* @brief MR2
* @details \reg
*/
#define PSIDR (_W5100S_IO_BASE_ + (0x0038))
/*
* @ingroup Common_register_group_W5100S
* @brief PMRUR
* @details \reg
*/
#define PMRUR (_W5100S_IO_BASE_ + (0x003A))
/*------------------------------------------ PHY registers ------------------------------------------*/
/*
* @ingroup Common_register_group_W5100S
* @brief PHYSR0
* @details \reg
*/
#define PHYSR (_W5100S_IO_BASE_ + (0x003C))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYSR1
* @details \reg
*/
#define PHYSR1 (_W5100S_IO_BASE_ + (0x003D))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYAR
* @details \reg
*/
#define PHYAR (_W5100S_IO_BASE_ + (0x003E))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYRR
* @details \reg
*/
#define PHYRR (_W5100S_IO_BASE_ + (0x003F))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYDIR
* @details \reg
*/
#define PHYDIR (_W5100S_IO_BASE_ + (0x0040))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYDOR
* @details \reg
*/
#define PHYDOR (_W5100S_IO_BASE_ + (0x0042))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYACR
* @details \reg
*/
#define PHYACR (_W5100S_IO_BASE_ + (0x0044))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYDIVR
* @details \reg
*/
#define PHYDIVR (_W5100S_IO_BASE_ + (0x0045))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYCR0
* @details \reg
*/
#define PHYCR0 (_W5100S_IO_BASE_ + (0x0046))
/*
* @ingroup Common_register_group_W5100S
* @brief PHYCR1
* @details \reg
*/
#define PHYCR1 (_W5100S_IO_BASE_ + (0x0047))
/*------------------------------------------ RMC registers ------------------------------------------*/
/*
* @ingroup Common_register_group_W5100S
* @brief SLCR
* @details \reg
*/
#define SLCR (_W5100S_IO_BASE_ + (0x004C))
/*
* @ingroup Common_register_group_W5100S
* @brief SLRTR
* @details \reg
*/
#define SLRTR (_W5100S_IO_BASE_ + (0x004D))
/*
* @ingroup Common_register_group_W5100S
* @brief SLRCR
* @details \reg
*/
#define SLRCR (_W5100S_IO_BASE_ + (0x004F))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command peer IP address register
* @details \reg
*/
#define SLPIPR (_W5100S_IO_BASE_ + (0x0050))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command peer hardware address register
* @details \reg
*/
#define SLPHAR (_W5100S_IO_BASE_ + (0x0054))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command ping sequence number register
* @details \reg
*/
#define PINGSEQR (_W5100S_IO_BASE_ + (0x005A))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command ping ID register
* @details \reg
*/
#define PINGIDR (_W5100S_IO_BASE_ + (0x005C))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command interrupt mask register
* @details \reg
*/
#define SLIMR (_W5100S_IO_BASE_ + (0x005E))
/*
* @ingroup Common_register_group_W5100S
* @brief Request command interrupt register
* @details \reg
*/
#define SLIR (_W5100S_IO_BASE_ + (0x005F))
/*
* @ingroup Common_register_group_W5100S
* @brief DBGOUT
* @details \reg
*/
#define DBGOUT (_W5100S_IO_BASE_ + (0x0060))
/*
* @ingroup Common_register_group_W5100S
* @brief NICMAXCOLR
* @details \reg
*/
#define NICMAXCOLR (_W5100S_IO_BASE_ + (0x0063))
/*------------------------------------------ CFG registers ------------------------------------------*/
/*
* @ingroup Common_register_group_W5100S
* @brief Chip Configuration locking register
* @details \reg
*/
#define CHIPLCKR (_W5100S_IO_BASE_ + (0x0070))
/*
* @ingroup Common_register_group_W5100S
* @brief Network Configuration locking register
* @details \reg
*/
#define NETLCKR (_W5100S_IO_BASE_ + (0x0071))
/*
* @ingroup Common_register_group_W5100S
* @brief PHY Configuration locking register
* @details \reg
*/
#define PHYLCKR (_W5100S_IO_BASE_ + (0x0072))
/*
* @ingroup Common_register_group_W5100S
* @brief version register
* @details \reg
*/
#define VERR (_W5100S_IO_BASE_ + (0x0080))
/*
* @ingroup Common_register_group_W5100S
* @brief Core 100us Counter register
* @details \reg
*/
#define TCNTR (_W5100S_IO_BASE_ + (0x0082))
/*
* @ingroup Common_register_group_W5100S
* @brief Core 100us Counter clear register
* @details \reg
*/
#define TCNTCLKR (_W5100S_IO_BASE_ + (0x0088))
//----------------------------- W5100 Socket Registers -----------------------------
//--------------------------- For Backward Compatibility ---------------------------
/**
* @ingroup Socket_register_group_W5100S
* @brief socket Mode register(R/W)
* @details \ref Sn_MR configures the option or protocol type of Socket n.\n\n
* Each bit of \ref Sn_MR defined as the following.
* <table>
* <tr> <td>7</td> <td>6</td> <td>5</td> <td>4</td> <td>3</td> <td>2</td> <td>1</td> <td>0</td> </tr>
* <tr> <td>MULTI</td> <td>MF</td> <td>ND/MC</td> <td>Reserved</td> <td>Protocol[3]</td> <td>Protocol[2]</td> <td>Protocol[1]</td> <td>Protocol[0]</td> </tr>
* </table>
* - \ref Sn_MR_MULTI : Support UDP Multicasting
* - \ref Sn_MR_MF : Support MACRAW
* - \ref Sn_MR_ND : No Delayed Ack(TCP) flag
* - \ref Sn_MR_MC : IGMP version used <b>in UDP mulitcasting</b>
* - <b>Protocol</b>
* <table>
* <tr> <td><b>Protocol[3]</b></td> <td><b>Protocol[2]</b></td> <td><b>Protocol[1]</b></td> <td><b>Protocol[0]</b></td> <td>@b Meaning</td> </tr>
* <tr> <td>0</td> <td>0</td> <td>0</td> <td>0</td> <td>Closed</td> </tr>
* <tr> <td>0</td> <td>0</td> <td>0</td> <td>1</td> <td>TCP</td> </tr>
* <tr> <td>0</td> <td>0</td> <td>1</td> <td>0</td> <td>UDP</td> </tr>
* <tr> <td>0</td> <td>1</td> <td>0</td> <td>0</td> <td>MACRAW</td> </tr>
* </table>
* - <b>In case of Socket 0</b>
* <table>
* <tr> <td><b>Protocol[3]</b></td> <td><b>Protocol[2]</b></td> <td><b>Protocol[1]</b></td> <td><b>Protocol[0]</b></td> <td>@b Meaning</td> </tr>
* <tr> <td>0</td> <td>1</td> <td>0</td> <td>0</td> <td>MACRAW</td> </tr>
* <tr> <td>0</td> <td>1</td> <td>0</td> <td>1</td> <td>PPPoE</td> </tr>
* </table>
* - \ref Sn_MR_MACRAW : MAC LAYER RAW SOCK \n
* - \ref Sn_MR_UDP : UDP
* - \ref Sn_MR_TCP : TCP
* - \ref Sn_MR_CLOSE : Unused socket
* @note MACRAW mode should be only used in Socket 0.
*/
#define Sn_MR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0000)) // socket Mode register
/**
* @ingroup Socket_register_group_W5100S
* @brief Socket command register(R/W)
* @details This is used to set the command for Socket n such as OPEN, CLOSE, CONNECT, LISTEN, SEND, and RECEIVE.\n
* After W5100 accepts the command, the \ref Sn_CR register is automatically cleared to 0x00.
* Even though \ref Sn_CR is cleared to 0x00, the command is still being processed.\n
* To check whether the command is completed or not, please check the \ref Sn_IR or \ref Sn_SR.
* - \ref Sn_CR_OPEN : Initialize or open socket.
* - \ref Sn_CR_LISTEN : Wait connection request in TCP mode(<b>Server mode</b>)
* - \ref Sn_CR_CONNECT : Send connection request in TCP mode(<b>Client mode</b>)
* - \ref Sn_CR_DISCON : Send closing request in TCP mode.
* - \ref Sn_CR_CLOSE : Close socket.
* - \ref Sn_CR_SEND : Update TX buffer pointer and send data.
* - \ref Sn_CR_SEND_MAC : Send data with MAC address, so without ARP process.
* - \ref Sn_CR_SEND_KEEP : Send keep alive message.
* - \ref Sn_CR_RECV : Update RX buffer pointer and receive data.
* - <b>In case of S0_MR(P3:P0) = S0_MR_PPPoE</b>
* <table>
* <tr> <td><b>Value</b></td> <td><b>Symbol</b></td> <td><b>Description</b></td></tr>
* <tr> <td>0x23</td> <td>PCON</td> <td>PPPoE connection begins by transmitting PPPoE discovery packet</td> </tr>
* <tr> <td>0x24</td> <td>PDISCON</td> <td>Closes PPPoE connection</td> </tr>
* <tr> <td>0x25</td> <td>PCR</td> <td>In each phase, it transmits REQ message.</td> </tr>
* <tr> <td>0x26</td> <td>PCN</td> <td>In each phase, it transmits NAK message.</td> </tr>
* <tr> <td>0x27</td> <td>PCJ</td> <td>In each phase, it transmits REJECT message.</td> </tr>
* </table>
*/
#define Sn_CR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0001)) // channel Sn_CR register
/**
* @ingroup Socket_register_group_W5100S
* @brief Socket interrupt register(R)
* @details \ref Sn_IR indicates the status of Socket Interrupt such as establishment, termination, receiving data, timeout).\n
* When an interrupt occurs and the corresponding bit \ref IR_SOCK(N) in \ref _IMR_ are set, \ref IR_SOCK(N) in \ref IR becomes '1'.\n
* In order to clear the \ref Sn_IR bit, the host should write the bit to \n
* <table>
* <tr> <td>7</td> <td>6</td> <td>5</td> <td>4</td> <td>3</td> <td>2</td> <td>1</td> <td>0</td> </tr>
* <tr> <td>PRECV</td> <td>PFAIL</td> <td>PNEXT</td> <td>SEND_OK</td> <td>TIMEOUT</td> <td>RECV</td> <td>DISCON</td> <td>CON</td> </tr>
* </table>
* - \ref Sn_IR_PRECV : <b>PPP Receive Interrupt</b>
* - \ref Sn_IR_PFAIL : <b>PPP Fail Interrupt</b>
* - \ref Sn_IR_PNEXT : <b>PPP Next Phase Interrupt</b>
* - \ref Sn_IR_SENDOK : <b>SEND_OK Interrupt</b>
* - \ref Sn_IR_TIMEOUT : <b>TIMEOUT Interrupt</b>
* - \ref Sn_IR_RECV : <b>RECV Interrupt</b>
* - \ref Sn_IR_DISCON : <b>DISCON Interrupt</b>
* - \ref Sn_IR_CON : <b>CON Interrupt</b>
*/
#define Sn_IR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0002)) // channel interrupt register
/**
* @ingroup Socket_register_group_W5100S
* @brief Socket status register(R)
* @details \ref Sn_SR indicates the status of Socket n.\n
* The status of Socket n is changed by \ref Sn_CR or some special control packet as SYN, FIN packet in TCP.
* @par Normal status
* - \ref SOCK_CLOSED : Closed
* - \ref SOCK_INIT : Initiate state
* - \ref SOCK_LISTEN : Listen state
* - \ref SOCK_ESTABLISHED : Success to connect
* - \ref SOCK_CLOSE_WAIT : Closing state
* - \ref SOCK_UDP : UDP socket
* - \ref SOCK_MACRAW : MAC raw mode socket
*@par Temporary status during changing the status of Socket n.
* - \ref SOCK_SYNSENT : This indicates Socket n sent the connect-request packet (SYN packet) to a peer.
* - \ref SOCK_SYNRECV : It indicates Socket n successfully received the connect-request packet (SYN packet) from a peer.
* - \ref SOCK_FIN_WAIT : Connection state
* - \ref SOCK_CLOSING : Closing state
* - \ref SOCK_TIME_WAIT : Closing state
* - \ref SOCK_LAST_ACK : Closing state
*/
#define Sn_SR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0003)) // channel status register
/**
* @ingroup Socket_register_group_W5100S
* @brief source port register(R/W)
* @details \ref Sn_PORT configures the source port number of Socket n.
* It is valid when Socket n is used in TCP/UDP mode. It should be set before OPEN command is ordered.
*/
#define Sn_PORT(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0004)) // source port register
/**
* @ingroup Socket_register_group_W5100S
* @brief Peer MAC register address(R/W)
* @details \ref Sn_DHAR configures the destination hardware address of Socket n when using SEND_MAC command in UDP mode or
* it indicates that it is acquired in ARP-process by CONNECT/SEND command.
*/
#define Sn_DHAR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0006)) // Peer MAC register address
/**
* @ingroup Socket_register_group_W5100S
* @brief Peer IP register address(R/W)
* @details \ref Sn_DIPR configures or indicates the destination IP address of Socket n. It is valid when Socket n is used in TCP/UDP mode.
* In TCP client mode, it configures an IP address of TCP server before CONNECT command.
* In TCP server mode, it indicates an IP address of TCP client after successfully establishing connection.
* In UDP mode, it configures an IP address of peer to be received the UDP packet by SEND or SEND_MAC command.
*/
#define Sn_DIPR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x000C)) // Peer IP register address
/**
* @ingroup Socket_register_group_W5100S
* @brief Peer port register address(R/W)
* @details \ref Sn_DPORT configures or indicates the destination port number of Socket n. It is valid when Socket n is used in TCP/UDP mode.
* In TCP clientmode, it configures the listen port number of TCP server before CONNECT command.
* In TCP Servermode, it indicates the port number of TCP client after successfully establishing connection.
* In UDP mode, it configures the port number of peer to be transmitted the UDP packet by SEND/SEND_MAC command.
*/
#define Sn_DPORT(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0010)) // Peer port register address
/**
* @ingroup Socket_register_group_W5100S
* @brief Maximum Segment Size(Sn_MSSR0) register address(R/W)
* @details \ref Sn_MSSR configures or indicates the MTU(Maximum Transfer Unit) of Socket n.
*/
#define Sn_MSSR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0012)) // Maximum Segment Size(Sn_MSSR0) register address
/**
* @ingroup Socket_register_group_W5100S
* @brief IP Protocol(PROTO) Register(R/W)
* @details \ref Sn_PROTO that sets the protocol number field of the IP header at the IP layer. It is
* valid only in IPRAW mode, and ignored in other modes.
*/
#define Sn_PROTO(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0014)) // Protocol of IP Header field register in IP raw mode
/**
* @ingroup Socket_register_group_W5100S
* @brief IP Type of Service(TOS) Register(R/W)
* @details \ref Sn_TOS configures the TOS(Type Of Service field in IP Header) of Socket n.
* It is set before OPEN command.
*/
#define Sn_TOS(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + 0x0015) // IP Type of Service(TOS) Register
/**
* @ingroup Socket_register_group_W5100S
* @brief IP Time to live(TTL) Register(R/W)
* @details \ref Sn_TTL configures the TTL(Time To Live field in IP header) of Socket n.
* It is set before OPEN command.
*/
#define Sn_TTL(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0016)) // IP Time to live(TTL) Register
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0017))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0018))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0019))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x001A))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x001B))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x001C))
// Reserved (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x001D))
/**
* @ingroup Socket_register_group_W5100S
* @brief Transmit free memory size register(R)
* @details \ref Sn_TX_FSR indicates the free size of Socket n TX Buffer Block. It is initialized to the configured size by \ref Sn_TXMEM_SIZE.
* Data bigger than \ref Sn_TX_FSR should not be saved in the Socket n TX Buffer because the bigger data overwrites the previous saved data not yet sent.
* Therefore, check before saving the data to the Socket n TX Buffer, and if data is equal or smaller than its checked size,
* transmit the data with SEND/SEND_MAC command after saving the data in Socket n TX buffer. But, if data is bigger than its checked size,
* transmit the data after dividing into the checked size and saving in the Socket n TX buffer.
*/
#define Sn_TX_FSR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0020)) // Transmit free memory size register
/**
* @ingroup Socket_register_group_W5100S
* @brief Transmit memory read pointer register address(R)
* @details \ref Sn_TX_RD is initialized by OPEN command. However, if Sn_MR(P[3:0]) is TCP mode(001), it is re-initialized while connecting with TCP.
* After its initialization, it is auto-increased by SEND command.
* SEND command transmits the saved data from the current \ref Sn_TX_RD to the \ref Sn_TX_WR in the Socket n TX Buffer.
* After transmitting the saved data, the SEND command increases the \ref Sn_TX_RD as same as the \ref Sn_TX_WR.
* If its increment value exceeds the maximum value 0xFFFF, (greater than 0x10000 and the carry bit occurs),
* then the carry bit is ignored and will automatically update with the lower 16bits value.
*/
#define Sn_TX_RD(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0022)) // Transmit memory read pointer register address
/**
* @ingroup Socket_register_group_W5100S
* @brief Transmit memory write pointer register address(R/W)
* @details \ref Sn_TX_WR is initialized by OPEN command. However, if Sn_MR(P[3:0]) is TCP mode(001), it is re-initialized while connecting with TCP.\n
* It should be read or be updated like as follows.\n
* 1. Read the starting address for saving the transmitting data.\n
* 2. Save the transmitting data from the starting address of Socket n TX buffer.\n
* 3. After saving the transmitting data, update \ref Sn_TX_WR to the increased value as many as transmitting data size.
* If the increment value exceeds the maximum value 0xFFFF(greater than 0x10000 and the carry bit occurs),
* then the carry bit is ignored and will automatically update with the lower 16bits value.\n
* 4. Transmit the saved data in Socket n TX Buffer by using SEND/SEND command
*/
#define Sn_TX_WR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0024)) // Transmit memory write pointer register address
/**
* @ingroup Socket_register_group_W5100S
* @brief Received data size register(R)
* @details \ref Sn_RX_RSR indicates the data size received and saved in Socket n RX Buffer.
* \ref Sn_RX_RSR does not exceed the \ref Sn_RXMEM_SIZE and is calculated as the difference between
* Socket n RX Write Pointer (\ref Sn_RX_WR)and Socket n RX Read Pointer (\ref Sn_RX_RD)
*/
#define Sn_RX_RSR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0026)) // Received data size register
/**
* @ingroup Socket_register_group_W5100S
* @brief Read point of Receive memory(R/W)
* @details \ref Sn_RX_RD is initialized by OPEN command. Make sure to be read or updated as follows.\n
* 1. Read the starting save address of the received data.\n
* 2. Read data from the starting address of Socket n RX Buffer.\n
* 3. After reading the received data, Update \ref Sn_RX_RD to the increased value as many as the reading size.
* If the increment value exceeds the maximum value 0xFFFF, that is, is greater than 0x10000 and the carry bit occurs,
* update with the lower 16bits value ignored the carry bit.\n
* 4. Order RECV command is for notifying the updated \ref Sn_RX_RD to W5100.
*/
#define Sn_RX_RD(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0028)) // Read point of Receive memory
/**
* @ingroup Socket_register_group_W5100S
* @brief Write point of Receive memory(R)
* @details \ref Sn_RX_WR is initialized by OPEN command and it is auto-increased by the data reception.
* If the increased value exceeds the maximum value 0xFFFF, (greater than 0x10000 and the carry bit occurs),
* then the carry bit is ignored and will automatically update with the lower 16bits value.
*/
#define Sn_RX_WR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x002A)) // Write point of Receive memory
//todo
#define Sn_IMR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x002C))
#define Sn_FRAGR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x002D)) // and +1
#define Sn_MR2(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x002F))
#define Sn_KPALVTR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0030))
#define Sn_TSR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0031))
#define Sn_RTR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0032))
#define Sn_RCR(sn) (_W5100S_IO_BASE_ + WIZCHIP_SREG_BLOCK(sn) + (0x0034))
/*----------------------------- W5100S Register values -----------------------------*/
/* MODE register values */
/**
* @brief Reset
* @details If this bit is All internal registers will be initialized. It will be automatically cleared as after S/W reset.
*/
#define MR_RST 0x80 ///< reset
/**
* @brief Ping block
* @details 0 : Disable Ping block\n
* 1 : Enable Ping block\n
* If the bit is it blocks the response to a ping request.
*/
#define MR_PB 0x10 ///< ping block
/**
* @brief Enable PPPoE
* @details 0 : DisablePPPoE mode\n
* 1 : EnablePPPoE mode\n
* If you use ADSL, this bit should be '1'.
*/
#define MR_PPPOE 0x08 ///< enable pppoe
/**
* @brief Address Auto-Increment in Indirect Bus Interface
* @details 0 : Disable auto-increment \n
* 1 : Enable auto-incremente \n
* At the Indirect Bus Interface mode, if this bit is set as 锟斤拷1锟斤拷, the address will
* be automatically increased by 1 whenever read and write are performed.
*/
#define MR_AI 0x02 ///< auto-increment in indirect mode
/**
* @brief Indirect Bus Interface mode
* @details 0 : Disable Indirect bus Interface mode \n
* 1 : Enable Indirect bus Interface mode \n
* If this bit is set as 锟斤拷1锟斤拷, Indirect Bus Interface mode is set.
*/
#define MR_IND 0x01 ///< enable indirect mode
/* IR register values */
/**
* @brief Check IP conflict.
* @details Bit is set as when own source IP address is same with the sender IP address in the received ARP request.
*/
#define IR_CONFLICT 0x80 ///< check ip confict
/**
* @brief Get the destination unreachable message in UDP sending.
* @details When receiving the ICMP (Destination port unreachable) packet, this bit is set as
* When this bit is Destination Information such as IP address and Port number may be checked with the corresponding @ref UIPR & @ref UPORTR.
*/
#define IR_UNREACH 0x40 ///< check destination unreachable
/**
* @brief Get the PPPoE close message.
* @details When PPPoE is disconnected during PPPoE mode, this bit is set.
*/
#define IR_PPPoE 0x20 ///< get the PPPoE close message
/**
* @brief Socket interrupt bit
* @details Indicates whether each socket interrupt has occured.
*/
#define IR_SOCK(sn) (0x01 << sn) ///< check socket interrupt
/**
* @brief IP conflict interrupt mask bit
* @details If this bit is set, IP conflict interrupt is enabled.
*/
#define IMR_CONFLICT 0x80
/**
* @brief Destination port unreachable interrupt mask bit
* @details If this bit is set, destination port unreachable interrupt is enabled.
*/
#define IMR_UNREACH 0x40
/**
* @brief PADT/LCPT interrupt mask bit
* @details If this bit is set, PADT/LCPT interrupt is enabled.
*/
#define IMR_PADT 0x20
/**
* @brief Socket interrupt mask bit
* @details If this bit is set, each socket interrupt is enabled.
*/
#define IMR_SOCK(sn) (0x01 << sn)
/**
* @brief Magic packet interrupt mask bit
* @details If this bit is set, each socket interrupt is enabled.
*/
#define IMR2_MGCPAK 0x01
/**
* @brief Request command register bit
* @details ARP command
*/
#define RQCMD_ARP (1<<1)
/**
* @brief Request command register bit
* @details ARP command
*/
#define RQCMD_PING (1<<0)
/**
* @brief Request command interrupt and interrupt mask register bit
* @details Request command time out interrupt and interrupt mask
*/
#define RQCMD_TIMEOUT (1<<2)
/**
* @brief Request command interrupt and interrupt mask register bit
* @details Request command ARP interrupt and interrupt mask
*/
#define RQCMD_ARP (1<<1)
/**
* @brief Request command interrupt and interrupt mask register bit
* @details Request command PING interrupt and interruptmask
*/
#define RQCMD_PING (1<<0)
// Sn_MR values
/* Sn_MR Default values */
/**
* @brief Unused socket
* @details This configures the protocol mode of Socket n.
*/
#define Sn_MR_CLOSE 0x00 ///< unused socket
/**
* @brief TCP
* @details This configures the protocol mode of Socket n.
*/
#define Sn_MR_TCP 0x01 ///< TCP
/**
* @brief UDP
* @details This configures the protocol mode of Socket n.
*/
#define Sn_MR_UDP 0x02 ///< UDP
#define Sn_MR_IPRAW 0x03 ///< IP LAYER RAW SOCK
/**
* @brief MAC LAYER RAW SOCK
* @details This configures the protocol mode of Socket n.
* @note MACRAW mode should be only used in Socket 0.
*/
#define Sn_MR_MACRAW 0x04 ///< MAC LAYER RAW SOCK
/**
* @brief PPPoE
* @details This configures the protocol mode of Socket n.
* @note PPPoE mode should be only used in Socket 0.
*/
#define Sn_MR_PPPoE 0x05 ///< PPPoE
/**
* @brief No Delayed Ack(TCP), Multicast flag
* @details 0 : Disable No Delayed ACK option\n
* 1 : Enable No Delayed ACK option\n
* This bit is applied only during TCP mode (P[3:0] = 001).\n
* When this bit is It sends the ACK packet without delay as soon as a Data packet is received from a peer.\n
* When this bit is It sends the ACK packet after waiting for the timeout time configured by \ref _RTR_.
*/
#define Sn_MR_ND 0x20 ///< No Delayed Ack(TCP) flag
/**
* @brief Support UDP Multicasting
* @details 0 : using IGMP version 2\n
* 1 : using IGMP version 1\n
* This bit is applied only during UDP mode(P[3:0] = 010 and MULTI = '1')
* It configures the version for IGMP messages (Join/Leave/Report).
*/
#define Sn_MR_MC Sn_MR_ND ///< Select IGMP version 1(0) or 2(1)
/**
* @brief MAC filter enable in @ref Sn_MR_MACRAW mode
* @details 0 : disable MAC Filtering\n
* 1 : enable MAC Filtering\n
* This bit is applied only during MACRAW mode(P[3:0] = 100.\n
* When set as W5100 can only receive broadcasting packet or packet sent to itself.
* When this bit is W5100 can receive all packets on Ethernet.
* If user wants to implement Hybrid TCP/IP stack,
* it is recommended that this bit is set as for reducing host overhead to process the all received packets.
*/
#define Sn_MR_MF 0x40 ///< Use MAC filter
#define Sn_MR_MFEN Sn_MR_MF
/* Sn_MR Default values */
/**
* @brief Support UDP Multicasting
* @details 0 : disable Multicasting\n
* 1 : enable Multicasting\n
* This bit is applied only during UDP mode(P[3:0] = 010).\n
* To use multicasting, \ref Sn_DIPR & \ref Sn_DPORT should be respectively configured with the multicast group IP address & port number
* before Socket n is opened by OPEN command of \ref Sn_CR.
*/
#define Sn_MR_MULTI 0x80 ///< support multicating
/* Sn_CR values */
/**
* @brief Initialize or open socket
* @details Socket n is initialized and opened according to the protocol selected in Sn_MR(P3:P0).
* The table below shows the value of \ref Sn_SR corresponding to \ref Sn_MR.\n
* <table>
* <tr> <td>\b Sn_MR (P[3:0])</td> <td>\b Sn_SR</td> </tr>
* <tr> <td>Sn_MR_CLOSE (000)</td> <td>--</td> </tr>
* <tr> <td>Sn_MR_TCP (001)</td> <td>SOCK_INIT (0x13)</td> </tr>
* <tr> <td>Sn_MR_UDP (010)</td> <td>SOCK_UDP (0x22)</td> </tr>
* <tr> <td>S0_MR_IPRAW (011)</td> <td>SOCK_IPRAW (0x32)</td> </tr>
* <tr> <td>S0_MR_MACRAW (100)</td> <td>SOCK_MACRAW (0x42)</td> </tr>
* <tr> <td>S0_MR_PPPoE (101)</td> <td>SOCK_PPPoE (0x5F)</td> </tr>
* </table>
*/
#define Sn_CR_OPEN 0x01 ///< initialize or open socket
/**
* @brief Wait connection request in TCP mode(Server mode)
* @details This is valid only in TCP mode (Sn_MR(P3:P0) = \ref Sn_MR_TCP).//
* In this mode, Socket n operates as a 'TCP server' and waits for connection-request (SYN packet) from any 'TCP client'.//
* The \ref Sn_SR changes the state from SOCK_INIT to SOCKET_LISTEN.//
* When a 'TCP client' connection request is successfully established,
* the \ref Sn_SR changes from SOCK_LISTEN to SOCK_ESTABLISHED and the Sn_IR(0) becomes
* But when a 'TCP client' connection request is failed, Sn_IR(3) becomes and the status of \ref Sn_SR changes to SOCK_CLOSED.
*/
#define Sn_CR_LISTEN 0x02 ///< wait connection request in tcp mode(Server mode)
/**
* @brief Send connection request in TCP mode(Client mode)
* @details To connect, a connect-request (SYN packet) is sent to <b>TCP server</b>configured by \ref Sn_DIPR & Sn_DPORT(destination address & port).
* If the connect-request is successful, the \ref Sn_SR is changed to \ref SOCK_ESTABLISHED and the Sn_IR(0) becomes \n\n
* The connect-request fails in the following three cases.\n
* 1. When a @b ARPTO occurs (\ref Sn_IR[3] = '1') because destination hardware address is not acquired through the ARP-process.\n
* 2. When a @b SYN/ACK packet is not received and @b TCPTO (Sn_IR(3) ='1')\n
* 3. When a @b RST packet is received instead of a @b SYN/ACK packet. In these cases, \ref Sn_SR is changed to \ref SOCK_CLOSED.
* @note This is valid only in TCP mode and operates when Socket n acts as <b>TCP client</b>
*/
#define Sn_CR_CONNECT 0x04 ///< send connection request in tcp mode(Client mode)
/**
* @brief Send closing request in TCP mode
* @details Regardless of <b>TCP server</b>or <b>TCP client</b> the DISCON command processes the disconnect-process (<b>Active close</b>or <b>Passive close</b>.\n
* @par Active close
* it transmits disconnect-request(FIN packet) to the connected peer\n
* @par Passive close
* When FIN packet is received from peer, a FIN packet is replied back to the peer.\n
* @details When the disconnect-process is successful (that is, FIN/ACK packet is received successfully), \ref Sn_SR is changed to \ref SOCK_CLOSED.\n
* Otherwise, TCPTO occurs (Sn_IR(3)='1') and then \ref Sn_SR is changed to \ref SOCK_CLOSED.
* @note Valid only in TCP mode.
*/
#define Sn_CR_DISCON 0x08 ///< send closing reqeuset in tcp mode
/**
* @brief Close socket
* @details Sn_SR is changed to \ref SOCK_CLOSED.
*/
#define Sn_CR_CLOSE 0x10
/**
* @brief Update TX buffer pointer and send data
* @details SEND transmits all the data in the Socket n TX buffer.\n
* For more details, please refer to Socket n TX Free Size Register (\ref Sn_TX_FSR), Socket n,
* TX Write Pointer Register(\ref Sn_TX_WR), and Socket n TX Read Pointer Register(\ref Sn_TX_RD).
*/
#define Sn_CR_SEND 0x20
/**
* @brief Send data with MAC address, so without ARP process
* @details The basic operation is same as SEND.\n
* Normally SEND transmits data after destination hardware address is acquired by the automatic ARP-process(Address Resolution Protocol).\n
* But SEND_MAC transmits data without the automatic ARP-process.\n
* In this case, the destination hardware address is acquired from \ref Sn_DHAR configured by host, instead of APR-process.
* @note Valid only in UDP mode.
*/
#define Sn_CR_SEND_MAC 0x21
/**
* @brief Send keep alive message
* @details It checks the connection status by sending 1byte keep-alive packet.\n
* If the peer can not respond to the keep-alive packet during timeout time, the connection is terminated and the timeout interrupt will occur.
* @note Valid only in TCP mode.
*/
#define Sn_CR_SEND_KEEP 0x22
/**
* @brief Update RX buffer pointer and receive data
* @details RECV completes the processing of the received data in Socket n RX Buffer by using a RX read pointer register (\ref Sn_RX_RD).\n
* For more details, refer to Socket n RX Received Size Register (\ref Sn_RX_RSR), Socket n RX Write Pointer Register (\ref Sn_RX_WR),
* and Socket n RX Read Pointer Register (\ref Sn_RX_RD).
*/
#define Sn_CR_RECV 0x40
/**
* @brief PPPoE connection
* @details PPPoE connection begins by transmitting PPPoE discovery packet
*/
#define Sn_CR_PCON 0x23
/**
* @brief Closes PPPoE connection
* @details Closes PPPoE connection
*/
#define Sn_CR_PDISCON 0x24
/**
* @brief REQ message transmission
* @details In each phase, it transmits REQ message.
*/
#define Sn_CR_PCR 0x25
/**
* @brief NAK massage transmission
* @details In each phase, it transmits NAK message.
*/
#define Sn_CR_PCN 0x26
/**
* @brief REJECT message transmission
* @details In each phase, it transmits REJECT message.
*/
#define Sn_CR_PCJ 0x27
/* Sn_IR values */
/**
* @brief PPP Receive Interrupt
* @details PPP Receive Interrupts when the option which is not supported is received.
*/
#define Sn_IR_PRECV 0x80
/**
* @brief PPP Fail Interrupt
* @details PPP Fail Interrupts when PAP Authentication is failed.
*/
#define Sn_IR_PFAIL 0x40
/**
* @brief PPP Next Phase Interrupt
* @details PPP Next Phase Interrupts when the phase is changed during ADSL connection process.
*/
#define Sn_IR_PNEXT 0x20
/**
* @brief SEND_OK Interrupt
* @details This is issued when SEND command is completed.
*/
#define Sn_IR_SENDOK 0x10 ///< complete sending
/**
* @brief TIMEOUT Interrupt
* @details This is issued when ARPTO or TCPTO occurs.
*/
#define Sn_IR_TIMEOUT 0x08 ///< assert timeout
/**
* @brief RECV Interrupt
* @details This is issued whenever data is received from a peer.
*/
#define Sn_IR_RECV 0x04
/**
* @brief DISCON Interrupt
* @details This is issued when FIN or FIN/ACK packet is received from a peer.
*/
#define Sn_IR_DISCON 0x02
/**
* @brief CON Interrupt
* @details This is issued one time when the connection with peer is successful and then \ref Sn_SR is changed to \ref SOCK_ESTABLISHED.
*/
#define Sn_IR_CON 0x01
/* Sn_SR values */
/**
* @brief Closed
* @details This indicates that Socket n is released.\n
* When DICON, CLOSE command is ordered, or when a timeout occurs, it is changed to \ref SOCK_CLOSED regardless of previous status.
*/
#define SOCK_CLOSED 0x00 ///< closed
/**
* @brief Initiate state
* @details This indicates Socket n is opened with TCP mode.\n
* It is changed to \ref SOCK_INIT when Sn_MR(P[3:0]) = 001)and OPEN command is ordered.\n
* After \ref SOCK_INIT, user can use LISTEN /CONNECT command.
*/
#define SOCK_INIT 0x13 ///< init state
/**
* @brief Listen state
* @details This indicates Socket n is operating as <b>TCP server</b>mode and waiting for connection-request (SYN packet) from a peer (<b>TCP client</b>).\n
* It will change to \ref SOCK_ESTABLISHED when the connection-request is successfully accepted.\n
* Otherwise it will change to \ref SOCK_CLOSED after TCPTO occurred (Sn_IR(TIMEOUT) = '1').
*/
#define SOCK_LISTEN 0x14
/**
* @brief Connection state
* @details This indicates Socket n sent the connect-request packet (SYN packet) to a peer.\n
* It is temporarily shown when \ref Sn_SR is changed from \ref SOCK_INIT to \ref SOCK_ESTABLISHED by CONNECT command.\n
* If connect-accept(SYN/ACK packet) is received from the peer at SOCK_SYNSENT, it changes to \ref SOCK_ESTABLISHED.\n
* Otherwise, it changes to \ref SOCK_CLOSED after TCPTO (\ref Sn_IR[TIMEOUT] = '1') is occurred.
*/
#define SOCK_SYNSENT 0x15
/**
* @brief Connection state
* @details It indicates Socket n successfully received the connect-request packet (SYN packet) from a peer.\n
* If socket n sends the response (SYN/ACK packet) to the peer successfully, it changes to \ref SOCK_ESTABLISHED. \n
* If not, it changes to \ref SOCK_CLOSED after timeout occurs (\ref Sn_IR[TIMEOUT] = '1').
*/
#define SOCK_SYNRECV 0x16
/**
* @brief Success to connect
* @details This indicates the status of the connection of Socket n.\n
* It changes to \ref SOCK_ESTABLISHED when the <b>TCP SERVER</b>processed the SYN packet from the <b>TCP CLIENT</b>during \ref SOCK_LISTEN, or
* when the CONNECT command is successful.\n
* During \ref SOCK_ESTABLISHED, DATA packet can be transferred using SEND or RECV command.
*/
#define SOCK_ESTABLISHED 0x17
/**
* @brief Closing state
* @details These indicate Socket n is closing.\n
* These are shown in disconnect-process such as active-close and passive-close.\n
* When Disconnect-process is successfully completed, or when timeout occurs, these change to \ref SOCK_CLOSED.
*/
#define SOCK_FIN_WAIT 0x18
/**
* @brief Closing state
* @details These indicate Socket n is closing.\n
* These are shown in disconnect-process such as active-close and passive-close.\n
* When Disconnect-process is successfully completed, or when timeout occurs, these change to \ref SOCK_CLOSED.
*/
#define SOCK_CLOSING 0x1A
/**
* @brief Closing state
* @details These indicate Socket n is closing.\n
* These are shown in disconnect-process such as active-close and passive-close.\n
* When Disconnect-process is successfully completed, or when timeout occurs, these change to \ref SOCK_CLOSED.
*/
#define SOCK_TIME_WAIT 0x1B
/**
* @brief Closing state
* @details This indicates Socket n received the disconnect-request (FIN packet) from the connected peer.\n
* This is half-closing status, and data can be transferred.\n
* For full-closing, DISCON command is used. But For just-closing, @ref Sn_CR_CLOSE command is used.
*/
#define SOCK_CLOSE_WAIT 0x1C
/**
* @brief Closing state
* @details This indicates Socket n is waiting for the response (FIN/ACK packet) to the disconnect-request (FIN packet) by passive-close.\n
* It changes to \ref SOCK_CLOSED when Socket n received the response successfully, or when timeout occurs (\ref Sn_IR[TIMEOUT] = '1').
*/
#define SOCK_LAST_ACK 0x1D
/**
* @brief UDP socket
* @details This indicates Socket n is opened in UDP mode(Sn_MR(P[3:0]) = 010).\n
* It changes to SOCK_UDP when Sn_MR(P[3:0]) = 010 and @ref Sn_CR_OPEN command is ordered.\n
* Unlike TCP mode, data can be transfered without the connection-process.
*/
#define SOCK_UDP 0x22 ///< udp socket
/**
* @brief IP raw mode socket
* @details TThe socket is opened in IPRAW mode. The SOCKET status is change to SOCK_IPRAW when @ref Sn_MR (P3:P0) is
* Sn_MR_IPRAW and @ref Sn_CR_OPEN command is used.\n
* IP Packet can be transferred without a connection similar to the UDP mode.
*/
#define SOCK_IPRAW 0x32 ///< ip raw mode socket
/**
* @brief MAC raw mode socket
* @details This indicates Socket 0 is opened in MACRAW mode (@ref Sn_MR(P[3:0]) = '100' and n=0) and is valid only in Socket 0.\n
* It changes to SOCK_MACRAW when @ref Sn_MR(P[3:0]) = '100' and @ref Sn_CR_OPEN command is ordered.\n
* Like UDP mode socket, MACRAW mode Socket 0 can transfer a MAC packet (Ethernet frame) without the connection-process.
*/
#define SOCK_MACRAW 0x42 ///< mac raw mode socket
/**
* @brief PPPoE mode socket
* @details It is the status that SOCKET0 is open as PPPoE mode. It is changed to SOCK_PPPoE in case of S0_CR=OPEN and S0_MR
* (P3:P0)=S0_MR_PPPoE.\n
* It is temporarily used at the PPPoE
connection.
*/
#define SOCK_PPPOE 0x5F ///< pppoe socket
// IP PROTOCOL
#define IPPROTO_IP 0 ///< Dummy for IP
#define IPPROTO_ICMP 1 ///< Control message protocol
#define IPPROTO_IGMP 2 ///< Internet group management protocol
#define IPPROTO_GGP 3 ///< GW^2 (deprecated)
#define IPPROTO_TCP 6 ///< TCP
#define IPPROTO_PUP 12 ///< PUP
#define IPPROTO_UDP 17 ///< UDP
#define IPPROTO_IDP 22 ///< XNS idp
#define IPPROTO_ND 77 ///< UNOFFICIAL net disk protocol
#define IPPROTO_RAW 255 ///< Raw IP packet
/*----------------------------- W5100S !!Only!! Register values -----------------------------*/
/* MODE2 register values */
/**
* @brief
* @details
*/
#define MR2_CLKSEL (1<<7)
/**
* @brief
* @details
*/
#define MR2_G_IEN (1<<6)
/**
* @brief
* @details
*/
#define MR2_NOTCPRST (1<<5)
/**
* @brief
* @details
*/
#define MR2_UDPURB (1<<4)
/**
* @brief
* @details
*/
#define MR2_WOL (1<<3)
/**
* @brief
* @details
*/
#define MR2_MNOSCHK (1<<2)
/**
* @brief
* @details
*/
#define MR2_UDPFARP (1<<1)
/**
* @brief
* @details
*/
#define MR2_SSRCHA (1<<0)
/* Common interrupt register 2 values */
/**
* @brief magic packet
* @details
*/
#define IR2_MGC (1<<1)
/**
* @brief
* @details
*/
//#define IR2_MGD (1<<1) /* Reserved */
/* PHY status register 0 values */
/**
* @brief
* @details
*/
#define PHYSR_CABOFF (1<<7)
/**
* @brief
* @details
*/
#define PHYSR_MD2 (1<<5)
/**
* @brief
* @details
*/
#define PHYSR_MD1 (1<<4)
/**
* @brief
* @details
*/
#define PHYSR_MD0 (1<<3)
/**
* @brief
* @details
*/
#define PHYSR_DUP (1<<2)
/**
* @brief
* @details
*/
#define PHYSR_SPD (1<<1)
/**
* @brief LINKDONE register
* @details If 1 Linked successfully, if 0 no link
*/
#define PHYSR_LNK (1<<0)
/* PHY status register 10 values */
/**
* @brief
* @details
*/
#define PHYSR1_RXPG (1<<2)
/**
* @brief
* @details
*/
#define PHYSR1_LPI (1<<1)
/**
* @brief
* @details
*/
#define PHYSR1_CLDN (1<<0)
#define PHYCR_AUTONEGO_ENABLE (0<<2)
#define PHYCR_AUTONEGO_DISABLE (1<<2)
#define PHYCR_SPD_10 (1<<1)
#define PHYCR_SPD_100 (0<<1)
#define PHYCR_HALF_DUP (1<<0)
#define PHYCR_FULL_DUP (0<<0)
/*----------------------------For PHY Control-------------------------------*/
/********************/
/* Register Address */
/********************/
//Basic mode control register, basic register
#define PHYMDIO_BMCR 0x00
//Basic mode status register, basic register
#define PHYMDIO_BMSR 0x01
//--------------------------------------Not used-------------------------------------------//
////PHY identifier register 1, extended register
//#define PHY_IDR1 0x02 //not used
//
////PHY identifier register 2, extended register
//#define PHY_IDR2 0x03 //not used
//
////Auto-negotiation advertisement register, extended register
//#define PHY_ANAR 0x04 //not used
//
////Auto-negotiation link partner ability register, extended register
//#define PHY_ANLPAR 0x05 //not used
//
////Auto-negotiation expansion register, extended register
//#define PHY_ANER 0x06 //not used
//
////Auto-negotiation next page transmit
//#define PHY_ANNP 0x07 //not used
//
////Auto-negotiation link partner of the next page receive
//#define PHY_ANLPNP 0x08 //not used
//
////MMD access control register
//#define PHY_REGCR 0x09 //not used
//
////MMD access address data register
//#define PHY_ADDAR 0x0e //not used
//--------------------------------------Not used-------------------------------------------//
/********************/
/* Bit definitions */
/********************/
//For BMCR register
#define BMCR_RESET (1<<15)
#define BMCR_MLOOPBACK (1<<14)
#define BMCR_SPEED (1<<13)
#define BMCR_AUTONEGO (1<<12)
#define BMCR_PWDN (1<<11)
#define BMCR_ISOLATE (1<<10)
#define BMCR_RSTNEGO (1<<9)
#define BMCR_DUP (1<<8)
#define BMCR_COLTEST (1<<7)
//For BMSR register
#define BMSR_AUTONEGO_COMPL (1<<5)
#define BMSR_REMOTE_FAULT (1<<4)
#define BMSR_LINK_STATUS (1<<2)
#define BMSR_JAB_DETECT (1<<1)
#define EXTENDED_CAPA (1<<0)
//--------------------------------------Not used-------------------------------------------//
////For ANAR register
//#define ANAR_NP (1<<15)
//#define ANAR_ACK (1<<14)
//#define ANAR_RF (1<<13)
//#define ANAR_ASM (3<<10)
//#define ANAR_T4 (1<<9)
//#define ANAR_TX_FD (1<<8)
//#define ANAR_TX_HD (1<<7)
//#define ANAR_10_FD (1<<6)
//#define ANAR_10_HD (1<<5)
//#define ANAR_SELECTOR (0x1F<<0)
//
////For ANAR register
//#define ANLPAR_NP (1<<15)
//#define ANLPAR_ACK (1<<14)
//#define ANLPAR_RF (1<<13)
//#define ANLPAR_LP_DIR (1<<11)
//#define ANLPAR_PAUSE (1<<10)
//#define ANLPAR_T4 (1<<9)
//#define ANLPAR_TX_FD (1<<8)
//#define ANLPAR_TX_HD (1<<7)
//#define ANLPAR_10_FD (1<<6)
//#define ANLPAR_10_HD (1<<5)
//#define ANLPAR_SELECTOR (0x1F<<0)
/**/
/* MDIO register*/
//PCS_CTL_1 | PCS control 1 register
//PCS_STS_1 | PCS status 1 register
//EEE_ABILITY | EEE capability register
//WAKE_ER_CNTR | EEE wake error counter
//EEE_ADVR | EEE Advertisement register
//EEE_LPAR | EEE link partner ability register
//--------------------------------------Not used-------------------------------------------//
/********************/
/*Functions for PHY */
/********************/
//todo move this definition to bit area
#define PHYACR_READ 0x02
#define PHYACR_WRITE 0x01
/**
* @brief Enter a critical section
*
* @details It is provided to protect your shared code which are executed without distribution. \n \n
*
* In non-OS environment, It can be just implemented by disabling whole interrupt.\n
* In OS environment, You can replace it to critical section api supported by OS.
*
* \sa WIZCHIP_READ(), WIZCHIP_WRITE(), WIZCHIP_READ_BUF(), WIZCHIP_WRITE_BUF()
* \sa WIZCHIP_CRITICAL_EXIT()
*/
#define WIZCHIP_CRITICAL_ENTER() WIZCHIP.CRIS._enter()
#ifdef _exit
#undef _exit
#endif
/**
* @brief Exit a critical section
*
* @details It is provided to protect your shared code which are executed without distribution. \n\n
*
* In non-OS environment, It can be just implemented by disabling whole interrupt. \n
* In OS environment, You can replace it to critical section api supported by OS.
*
* @sa WIZCHIP_READ(), WIZCHIP_WRITE(), WIZCHIP_READ_BUF(), WIZCHIP_WRITE_BUF()
* @sa WIZCHIP_CRITICAL_ENTER()
*/
#define WIZCHIP_CRITICAL_EXIT() WIZCHIP.CRIS._exit()
////////////////////////
// Basic I/O Function //
////////////////////////
//
//M20150601 : uint16_t AddrSel --> uint32_t AddrSel
//
/**
* @ingroup Basic_IO_function_W5100S
* @brief It reads 1 byte value from a register.
* @param AddrSel Register address
* @return The value of register
*/
uint8_t WIZCHIP_READ (uint32_t AddrSel);
/**
* @ingroup Basic_IO_function_W5100S
* @brief It writes 1 byte value to a register.
* @param AddrSel Register address
* @param wb Write data
* @return void
*/
void WIZCHIP_WRITE(uint32_t AddrSel, uint8_t wb );
/**
* @ingroup Basic_IO_function_W5100S
* @brief It reads sequence data from registers.
* @param AddrSel Register address
* @param pBuf Pointer buffer to read data
* @param len Data length
*/
void WIZCHIP_READ_BUF (uint32_t AddrSel, uint8_t* pBuf, uint16_t len);
/**
* @ingroup Basic_IO_function_W5100S
* @brief It writes sequence data to registers.
* @param AddrSel Register address
* @param pBuf Pointer buffer to write data
* @param len Data length
*/
void WIZCHIP_WRITE_BUF(uint32_t AddrSel, uint8_t* pBuf, uint16_t len);
/////////////////////////////////
// Common Register IO function //
/////////////////////////////////
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set Mode Register
* @param (uint8_t)mr The value to be set.
* @sa getMR()
*/
#if (_WIZCHIP_IO_MODE_ & _WIZCHIP_IO_MODE_SPI_)
#define setMR(mr) WIZCHIP_WRITE(MR,mr)
#else
#define setMR(mr) (*((uint8_t*)MR) = mr)
#endif
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get @ref MR.
* @return uint8_t. The value of Mode register.
* @sa setMR()
*/
#if (_WIZCHIP_IO_MODE_ & _WIZCHIP_IO_MODE_SPI_)
#define getMR() WIZCHIP_READ(MR)
#else
#define getMR() (*(uint8_t*)MR)
#endif
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set @ref GAR.
* @param (uint8_t*)gar Pointer variable to set gateway IP address. It should be allocated 4 bytes.
* @sa getGAR()
*/
#define setGAR(gar) \
WIZCHIP_WRITE_BUF(GAR,gar,4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get @ref GAR.
* @param (uint8_t*)gar Pointer variable to get gateway IP address. It should be allocated 4 bytes.
* @sa setGAR()
*/
#define getGAR(gar) \
WIZCHIP_READ_BUF(GAR,gar,4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set @ref SUBR.
* @param (uint8_t*)subr Pointer variable to set subnet mask address. It should be allocated 4 bytes.
* @note If subr is null pointer, set the backup subnet to SUBR. \n
* If subr is 0.0.0.0, back up SUBR and clear it. \n
* Otherwize, set subr to SUBR
* @sa getSUBR()
*/
#define setSUBR(subr) \
WIZCHIP_WRITE_BUF(SUBR,subr,4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get @ref SUBR.
* @param (uint8_t*)subr Pointer variable to get subnet mask address. It should be allocated 4 bytes.
* @sa setSUBR()
*/
#define getSUBR(subr) \
WIZCHIP_READ_BUF(SUBR, subr, 4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set @ref SHAR.
* @param (uint8_t*)shar Pointer variable to set local MAC address. It should be allocated 6 bytes.
* @sa getSHAR()
*/
#define setSHAR(shar) \
WIZCHIP_WRITE_BUF(SHAR, shar, 6)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get @ref SHAR.
* @param (uint8_t*)shar Pointer variable to get local MAC address. It should be allocated 6 bytes.
* @sa setSHAR()
*/
#define getSHAR(shar) \
WIZCHIP_READ_BUF(SHAR, shar, 6)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set @ref SIPR.
* @param (uint8_t*)sipr Pointer variable to set local IP address. It should be allocated 4 bytes.
* @sa getSIPR()
*/
#define setSIPR(sipr) \
WIZCHIP_WRITE_BUF(SIPR, sipr, 4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get @ref SIPR.
* @param (uint8_t*)sipr Pointer variable to get local IP address. It should be allocated 4 bytes.
* @sa setSIPR()
*/
#define getSIPR(sipr) \
WIZCHIP_READ_BUF(SIPR, sipr, 4)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref IR register
* @param (uint8_t)ir Value to set \ref IR register.
* @sa getIR()
*/
#define setIR(ir) \
WIZCHIP_WRITE(IR, (ir & 0xE0)) //peter 2016.11.07 unreachable interrupt bit added
//WIZCHIP_WRITE(IR, (ir & 0xA0))
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref IR register
* @return uint8_t. Value of \ref IR register.
* @sa setIR()
*/
#define getIR() \
(WIZCHIP_READ(IR) & 0xE0) //peter 2016.11.07 unreachable interrupt bit added
//(WIZCHIP_READ(IR) & 0xA0)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref _IMR_ register
* @param (uint8_t)imr Value to set @ref _IMR_ register.
* @sa getIMR()
*/
#define setIMR(imr) \
WIZCHIP_WRITE(_IMR_, imr)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref _IMR_ register
* @return uint8_t. Value of @ref _IMR_ register.
* @sa setIMR()
*/
#define getIMR() \
WIZCHIP_READ(_IMR_)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref _RTR_ register
* @param (uint16_t)rtr Value to set @ref _RTR_ register.
* @sa getRTR()
*/
#define setRTR(rtr) {\
WIZCHIP_WRITE(_RTR_, (uint8_t)(rtr >> 8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(_RTR_,1), (uint8_t) rtr); \
}
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref _RTR_ register
* @return uint16_t. Value of @ref _RTR_ register.
* @sa setRTR()
*/
#define getRTR() \
(((uint16_t)WIZCHIP_READ(_RTR_) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(_RTR_,1)))
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref _RCR_ register
* @param (uint8_t)rcr Value to set @ref _RCR_ register.
* @sa getRCR()
*/
#define setRCR(rcr) \
WIZCHIP_WRITE(_RCR_, rcr)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref _RCR_ register
* @return uint8_t. Value of @ref _RCR_ register.
* @sa setRCR()
*/
#define getRCR() \
WIZCHIP_READ(_RCR_)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref RMSR register
* @sa getRMSR()
*/
#define setRMSR(rmsr) \
WIZCHIP_WRITE(RMSR,rmsr) // Receicve Memory Size
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref RMSR register
* @return uint8_t. Value of @ref RMSR register.
* @sa setRMSR()
*/
#define getRMSR() \
WIZCHIP_READ(RMSR) // Receicve Memory Size
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref TMSR register
* @sa getTMSR()
*/
#define setTMSR(tmsr) \
WIZCHIP_WRITE(TMSR,tmsr) // Receicve Memory Size
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref TMSR register
* @return uint8_t. Value of @ref TMSR register.
* @sa setTMSR()
*/
#define getTMSR() \
WIZCHIP_READ(TMSR)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref PATR register
* @return uint16_t. Value to set \ref PATR register
*/
#define getPATR() \
(((uint16_t)WIZCHIP_READ(PATR) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(PATR,1)))
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref PPPALGO register
* @return uint8_t. Value to set \ref PPPALGO register
*/
#define getPPPALGO() \
WIZCHIP_READ(PPPALGO)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref PTIMER register
* @param (uint8_t)ptimer Value to set \ref PTIMER register.
* @sa getPTIMER()
*/
#define setPTIMER(ptimer) \
WIZCHIP_WRITE(PTIMER, ptimer)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref PTIMER register
* @return uint8_t. Value of @ref PTIMER register.
* @sa setPTIMER()
*/
#define getPTIMER() \
WIZCHIP_READ(PTIMER)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Set \ref PMAGIC register
* @param (uint8_t)pmagic Value to set @ref PMAGIC register.
* @sa getPMAGIC()
*/
#define setPMAGIC(pmagic) \
WIZCHIP_WRITE(PMAGIC, pmagic)
/**
* @ingroup Common_register_access_function_W5100S
* @brief Get \ref PMAGIC register
* @return uint8_t. Value of @ref PMAGIC register.
* @sa setPMAGIC()
*/
#define getPMAGIC() \
WIZCHIP_READ(PMAGIC)
//todo Functions for W5100S
/*----------------------------------------------------------------------*/
/* W5100S only */
/*----------------------------------------------------------------------*/
#define setIR2(ir2) \
WIZCHIP_WRITE(IR2, ir2)
#define getIR2() \
WIZCHIP_READ(IR2)
#define setIMR2(imr2) \
WIZCHIP_WRITE(IMR2,imr2)
#define getIMR2() \
WIZCHIP_READ(IMR2)
#define setUIPR(uipr) \
WIZCHIP_WRITE_BUF(UIPR,uipr,4)
#define getUIPR(uipr) \
WIZCHIP_READ_BUF(UIPR,uipr,4)
#define setUPORTR(uportr) {\
WIZCHIP_WRITE(UPORTR, (uint8_t)(uportr >> 8)); \
WIZCHIP_WRITE(UPORTR+1, (uint8_t) uportr); \
}
#define getUPORTR() \
(((uint16_t)WIZCHIP_READ(UPORTR) << 8) + WIZCHIP_READ(UPORTR+1))
#define setMR2(mr2) \
WIZCHIP_WRITE(MR2,mr2)
#define getMR2() \
WIZCHIP_READ(MR2)
#define setPHAR(phar) \
WIZCHIP_WRITE_BUF(PHAR,phar,6)
#define getPHAR(phar) \
WIZCHIP_READ_BUF(PHAR,phar,6)
#define setPSIDR(psidr) {\
WIZCHIP_WRITE(PSIDR, (uint8_t)(psidr >> 8)); \
WIZCHIP_WRITE(PSIDR+1, (uint8_t) psidr); \
}
#define getPSIDR() \
(((uint16_t)WIZCHIP_READ(PSIDR) << 8) + WIZCHIP_READ(PSIDR+1))
#define setPMRUR(pmrur) {\
WIZCHIP_WRITE(PMRUR, (uint8_t)(pmrur >> 8)); \
WIZCHIP_WRITE(PMRUR+1, (uint8_t) pmrur); \
}
#define getPMRUR() \
(((uint16_t)WIZCHIP_READ(PMRUR) << 8) + WIZCHIP_READ(PMRUR+1))
#define getPHYSR() \
WIZCHIP_READ(PHYSR)
#define getPHYSR1() \
WIZCHIP_READ(PHYSR1)
//The address of the PHY is fixed as "0x0A".
#define getPHYAR() \
WIZCHIP_READ(PHYAR)
//read the value of the phy address register
#define getPHYRR() \
WIZCHIP_READ(PHYRR)
//write the value to the phy address register
#define setPHYRR(phyrr) \
WIZCHIP_WRITE(PHYRR, phyrr)
//read the value of the phy data input register
#define getPHYDIR() \
(((uint16_t)WIZCHIP_READ(PHYDIR+1) << 8) + WIZCHIP_READ(PHYDIR))
//write the value of the phy data input register
#define setPHYDIR(phydir) {\
WIZCHIP_WRITE(PHYDIR+1, (uint8_t)(phydir >> 8)); \
WIZCHIP_WRITE(PHYDIR, (uint8_t) phydir); \
}
//read the value of the phy data output register
#define getPHYDOR() \
(((uint16_t)WIZCHIP_READ(PHYDOR+1) << 8) + WIZCHIP_READ(PHYDOR))
//write the value of the phy data output register
#define setPHYDOR(phydor) {\
WIZCHIP_WRITE(PHYDOR, (uint8_t)(phydor >> 8)); \
WIZCHIP_WRITE(PHYDOR+1, (uint8_t) phydor); \
}
//read the value of the phy action register ***meaningless because of this register will be cleared automatically***
#define getPHYACR() \
WIZCHIP_READ(PHYACR)
//write the value of the phy action register
#define setPHYACR(phyacr) \
WIZCHIP_WRITE(PHYACR,phyacr)
#define setPHYDIVR(phydivr) \
WIZCHIP_WRITE(PHYDIVR, phydivr)
#define getPHYDIVR() \
WIZCHIP_READ(PHYDIVR)
#define setPHYCR0(phych0) \
WIZCHIP_WRITE(PHYCR0,phych0)
#define getPHYCR0() \
WIZCHIP_READ(PHYCR0)
#define setPHYCR1(phycr1) \
WIZCHIP_WRITE(PHYCR1,phycr1)
#define getPHYCR1() \
WIZCHIP_READ(PHYCR1)
#define setSLCR(rqcr) \
WIZCHIP_WRITE(SLCR, rqcr)
#define getSLCR() \
WIZCHIP_READ(RQCR)
#define setSLRTR(slrtr) \
WIZCHIP_WRITE(SLRTR, (uint8_t)(slrtr >> 8)); \
WIZCHIP_WRITE(SLRTR+1, (uint8_t) slrtr); \
#define getSLRTR() \
(((uint16_t)WIZCHIP_READ(SLRTR) << 8) + WIZCHIP_READ(SLRTR+1))
#define setSLRCR(slrcr) \
WIZCHIP_WRITE(SLRCR,slrcr)
#define getSLRCR() \
WIZCHIP_READ(SLRCR)
#define setSLPIPR(slpipr) \
WIZCHIP_WRITE_BUF(SLPIPR,slpipr,4)
#define getSLPIPR(slpipr) \
WIZCHIP_READ_BUF(SLPIPR,slpipr,4)
#define setSLPHAR(slphar) \
WIZCHIP_WRITE_BUF(SLPHAR,slphar,6)
#define getSLPHAR(rqphar) \
WIZCHIP_READ_BUF(SLPHAR,slphar,6)
#define setPINGSEQR(pingseqr) {\
WIZCHIP_WRITE(PINGSEQR, (uint8_t)(pingseqr >> 8)); \
WIZCHIP_WRITE(PINGSEQR+1, (uint8_t) pingseqr); \
}
#define getPINGSEQR() \
(((uint16_t)WIZCHIP_READ(PINGSEQR) << 8) + WIZCHIP_READ(PINGSEQR+1))
#define setPINGIDR(pingidr) {\
WIZCHIP_WRITE(PINGIDR, (uint8_t)(pingidr >> 8)); \
WIZCHIP_WRITE(PINGIDR+1, (uint8_t) pingidr); \
}
#define getPINGIDR() \
(((uint16_t)WIZCHIP_READ(PINGIDR) << 8) + WIZCHIP_READ(PINGIDR+1))
#define setSLIMR(slimr) \
WIZCHIP_WRITE(SLIMR, slimr)
#define getSLIMR() \
WIZCHIP_READ(SLIMR)
#define setSLIR(slir) \
WIZCHIP_WRITE(SLIR, slir)
#define getSLIR() \
WIZCHIP_READ(SLIR)
/*Hidden functions for W5100S*/
#define setDBGOUT(dbgout) {\
WIZCHIP_WRITE(DBGOUT,(uint8_t)(dbgout >> 16)); \
WIZCHIP_WRITE(DBGOUT,(uint8_t)(dbgout >> 8)); \
WIZCHIP_WRITE(DBGOUT,(uint8_t)(dbgout)); \
}
#define setNICMAXCOLR(nicmaxcolr) \
WIZCHIP_WRITE(NICMAXCOLR,nicmaxcolr)
#define getNICMAXCOLR() \
WIZCHIP_READ(NICMAXCOLR)
/*Clock lock/unlock*/
#define CHIPLOCK() \
WIZCHIP_WRITE(CHIPLCKR,0xff)
#define CHIPUNLOCK() \
WIZCHIP_WRITE(CHIPLCKR,0xCE)
/*Network information lock/unlock*/
#define NETLOCK() \
WIZCHIP_WRITE(NETLCKR,0x3A)
#define NETUNLOCK() \
WIZCHIP_WRITE(NETLCKR,0xC5)
/*PHY CR0,CR1 lock/unlock*/
#define PHYLOCK() \
WIZCHIP_WRITE(PHYLCKR,0xff)
#define PHYUNLOCK() \
WIZCHIP_WRITE(PHYLCKR,0x53)
/**
* @ingroup Version register_access_function_W5100SS
* @brief Get version information.
* @return uint16_t. It must be "0x51"
*/
#define getVER() \
(WIZCHIP_READ(VERR))
/*Get 100us internal counter*/
#define getTCNTR() \
(((uint16_t)WIZCHIP_READ(TCNTR) << 8) + WIZCHIP_READ(TCNTR+1))
/*Reset 100us internal counter(TCNTR)*/
#define setTCNTCLKR(var) \
WIZCHIP_WRITE(TCNTCLKR, var)
/*w5100s only end*/
///////////////////////////////////
// Socket N register I/O function //
///////////////////////////////////
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_MR register
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b> expect <b>bit 4</b>.
* @param mr Value to set @ref Sn_MR
* @sa getSn_MR()
*/
#define setSn_MR(sn, mr) \
WIZCHIP_WRITE(Sn_MR(sn),mr)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_MR register
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b> expect <b>bit 4</b>.
* @return Value of @ref Sn_MR.
* @sa setSn_MR()
*/
#define getSn_MR(sn) \
WIZCHIP_READ(Sn_MR(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_CR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t)cr Value to set @ref Sn_CR
* @sa getSn_CR()
*/
#define setSn_CR(sn, cr) \
WIZCHIP_WRITE(Sn_CR(sn), cr)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_CR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_CR.
* @sa setSn_CR()
*/
#define getSn_CR(sn) \
WIZCHIP_READ(Sn_CR(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_IR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t)ir Value to set @ref Sn_IR
* @sa getSn_IR()
*/
#define setSn_IR(sn, ir) \
WIZCHIP_WRITE(Sn_IR(sn), ir)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_IR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_IR.
* @sa setSn_IR()
*/
#define getSn_IR(sn) \
WIZCHIP_READ(Sn_IR(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_SR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_SR.
*/
#define getSn_SR(sn) \
WIZCHIP_READ(Sn_SR(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_PORT register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)port Value to set @ref Sn_PORT.
* @sa getSn_PORT()
*/
#define setSn_PORT(sn, port) { \
WIZCHIP_WRITE(Sn_PORT(sn), (uint8_t)(port >> 8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_PORT(sn),1), (uint8_t) port); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_PORT register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_PORT.
* @sa setSn_PORT()
*/
#define getSn_PORT(sn) \
(((uint16_t)WIZCHIP_READ(Sn_PORT(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_PORT(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_DHAR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t*)dhar Pointer variable to set socket n destination hardware address. It should be allocated 6 bytes.
* @sa getSn_DHAR()
*/
#define setSn_DHAR(sn, dhar) \
WIZCHIP_WRITE_BUF(Sn_DHAR(sn), dhar, 6)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_DHAR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t*)dhar Pointer variable to get socket n destination hardware address. It should be allocated 6 bytes.
* @sa setSn_DHAR()
*/
#define getSn_DHAR(sn, dhar) \
WIZCHIP_READ_BUF(Sn_DHAR(sn), dhar, 6)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_DIPR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t*)dipr Pointer variable to set socket n destination IP address. It should be allocated 4 bytes.
* @sa getSn_DIPR()
*/
#define setSn_DIPR(sn, dipr) \
WIZCHIP_WRITE_BUF(Sn_DIPR(sn), dipr, 4)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_DIPR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t*)dipr Pointer variable to get socket n destination IP address. It should be allocated 4 bytes.
* @sa SetSn_DIPR()
*/
#define getSn_DIPR(sn, dipr) \
WIZCHIP_READ_BUF(Sn_DIPR(sn), dipr, 4)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_DPORT register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)dport Value to set @ref Sn_DPORT
* @sa getSn_DPORT()
*/
#define setSn_DPORT(sn, dport) { \
WIZCHIP_WRITE(Sn_DPORT(sn), (uint8_t) (dport>>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_DPORT(sn),1), (uint8_t) dport); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_DPORT register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_DPORT.
* @sa setSn_DPORT()
*/
#define getSn_DPORT(sn) \
(((uint16_t)WIZCHIP_READ(Sn_DPORT(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_DPORT(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_MSSR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)mss Value to set @ref Sn_MSSR
* @sa setSn_MSSR()
*/
#define setSn_MSSR(sn, mss) { \
WIZCHIP_WRITE(Sn_MSSR(sn), (uint8_t)(mss>>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_MSSR(sn),1), (uint8_t) mss); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_MSSR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_MSSR.
* @sa setSn_MSSR()
*/
#define getSn_MSSR(sn) \
(((uint16_t)WIZCHIP_READ(Sn_MSSR(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_MSSR(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_PROTO register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t)proto Value to set \ref Sn_PROTO
* @sa getSn_PROTO()
*/
#define setSn_PROTO(sn, proto) \
WIZCHIP_WRITE(Sn_PROTO(sn), proto)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_PROTO register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_PROTO.
* @sa setSn_PROTO()
*/
#define getSn_PROTO(sn) \
WIZCHIP_READ(Sn_PROTO(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_TOS register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t)tos Value to set @ref Sn_TOS
* @sa getSn_TOS()
*/
#define setSn_TOS(sn, tos) \
WIZCHIP_WRITE(Sn_TOS(sn), tos)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TOS register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_ </b>.
* @return uint8_t. Value of Sn_TOS.
* @sa setSn_TOS()
*/
#define getSn_TOS(sn) \
WIZCHIP_READ(Sn_TOS(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_TTL register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_ </b>.
* @param (uint8_t)ttl Value to set @ref Sn_TTL
* @sa getSn_TTL()
*/
#define setSn_TTL(sn, ttl) \
WIZCHIP_WRITE(Sn_TTL(sn), ttl)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TTL register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_ </b>.
* @return uint8_t. Value of @ref Sn_TTL.
* @sa setSn_TTL()
*/
#define getSn_TTL(sn) \
WIZCHIP_READ(Sn_TTL(sn))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_RXMEM_SIZE register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_ </b>.
* @param (uint8_t)rxmemsize Value to set \ref Sn_RXMEM_SIZE
* @sa getSn_RXMEM_SIZE()
*/
#define setSn_RXMEM_SIZE(sn, rxmemsize) \
WIZCHIP_WRITE(RMSR, (WIZCHIP_READ(RMSR) & ~(0x03 << (2*sn))) | (rxmemsize << (2*sn)))
#define setSn_RXBUF_SIZE(sn,rxmemsize) setSn_RXMEM_SIZE(sn,rxmemsize)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_RXMEM_SIZE register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_RXMEM.
* @sa setSn_RXMEM_SIZE()
*/
#define getSn_RXMEM_SIZE(sn) \
((WIZCHIP_READ(RMSR) & (0x03 << (2*sn))) >> (2*sn))
#define getSn_RXBUF_SIZE(sn) getSn_RXMEM_SIZE(sn)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_TXMEM_SIZE register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint8_t)txmemsize Value to set \ref Sn_TXMEM_SIZE
* @sa getSn_TXMEM_SIZE()
*/
#define setSn_TXMEM_SIZE(sn, txmemsize) \
WIZCHIP_WRITE(TMSR, (WIZCHIP_READ(TMSR) & ~(0x03 << (2*sn))) | (txmemsize << (2*sn)))
#define setSn_TXBUF_SIZE(sn, txmemsize) setSn_TXMEM_SIZE(sn,txmemsize)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TXMEM_SIZE register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint8_t. Value of @ref Sn_TXMEM_SIZE.
* @sa setSn_TXMEM_SIZE()
*/
#define getSn_TXMEM_SIZE(sn) \
((WIZCHIP_READ(TMSR) & (0x03 << (2*sn))) >> (2*sn))
#define getSn_TXBUF_SIZE(sn) getSn_TXMEM_SIZE(sn)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TX_FSR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_TX_FSR.
*/
uint16_t getSn_TX_FSR(uint8_t sn);
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TX_RD register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_TX_RD.
*/
#define getSn_TX_RD(sn) \
(((uint16_t)WIZCHIP_READ(Sn_TX_RD(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_TX_RD(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_TX_WR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)txwr Value to set @ref Sn_TX_WR
* @sa GetSn_TX_WR()
*/
#define setSn_TX_WR(sn, txwr) { \
WIZCHIP_WRITE(Sn_TX_WR(sn), (uint8_t)(txwr>>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_TX_WR(sn),1), (uint8_t) txwr); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_TX_WR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_TX_WR.
* @sa setSn_TX_WR()
*/
#define getSn_TX_WR(sn) \
(((uint16_t)WIZCHIP_READ(Sn_TX_WR(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_TX_WR(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_RX_RSR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_RX_RSR.
*/
uint16_t getSn_RX_RSR(uint8_t sn);
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_RX_RD register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)rxrd Value to set @ref Sn_RX_RD
* @sa getSn_RX_RD()
*/
#define setSn_RX_RD(sn, rxrd) { \
WIZCHIP_WRITE(Sn_RX_RD(sn), (uint8_t)(rxrd>>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_RX_RD(sn),1), (uint8_t) rxrd); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_RX_RD register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @regurn uint16_t. Value of @ref Sn_RX_RD.
* @sa setSn_RX_RD()
*/
#define getSn_RX_RD(sn) \
(((uint16_t)WIZCHIP_READ(Sn_RX_RD(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_RX_RD(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_RX_WR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)rxwr Value to set \ref Sn_RX_WR
* @sa getSn_RX_WR()
*/
#define setSn_RX_WR(sn, rxwr) { \
WIZCHIP_WRITE(Sn_RX_WR(sn), (uint8_t)(rxwr>>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_RX_WR(sn),1), (uint8_t) rxwr); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_RX_WR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_RX_WR.
*/
#define getSn_RX_WR(sn) \
(((uint16_t)WIZCHIP_READ(Sn_RX_WR(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_RX_WR(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Set @ref Sn_FRAGR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param (uint16_t)frag Value to set \ref Sn_FRAGR
* @sa getSn_FRAG()
*/
#define setSn_FRAGR(sn, fragr) { \
WIZCHIP_WRITE(Sn_FRAGR(sn), (uint8_t)(fragr >>8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_FRAGR(sn),1), (uint8_t) fragr); \
}
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get @ref Sn_FRAGR register
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of @ref Sn_FRAGR.
* @sa setSn_FRAG()
*/
#define getSn_FRAGR(sn) \
(((uint16_t)WIZCHIP_READ(Sn_FRAGR(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_FRAGR(sn),1)))
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the max RX buffer size of socket sn
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Max buffer size
*/
#define getSn_RxMAX(sn) \
((uint16_t)(1 << getSn_RXMEM_SIZE(sn)) << 10) //getSn_RXMEM_SIZE(sn) 获取对应SOCKET接收缓存大小
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the max TX buffer size of socket sn
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Max buffer size
*/
#define getSn_TxMAX(sn) \
((uint16_t)(1 << getSn_TXMEM_SIZE(sn)) << 10)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the mask of socket sn RX buffer.
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Mask value
*/
#define getSn_RxMASK(sn) \
(getSn_RxMAX(sn) - 1)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the mask of socket sn TX buffer
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Mask value
*/
#define getSn_TxMASK(sn) \
(getSn_TxMAX(sn) - 1)
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the base address of socket sn RX buffer.
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of Socket n RX buffer base address.
*/
uint32_t getSn_RxBASE(uint8_t sn);
/**
* @ingroup Socket_register_access_function_W5100S
* @brief Get the base address of socket sn TX buffer.
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @return uint16_t. Value of Socket n TX buffer base address.
*/
uint32_t getSn_TxBASE(uint8_t sn);
/*socket register W5100S only*/
#define setSn_IMR(sn,imr) \
WIZCHIP_WRITE(Sn_IMR(sn),imr)
#define getSn_IMR(sn) \
WIZCHIP_WRITE(Sn_IMR(sn))
#define setSn_MR2(sn,mr2) \
WIZCHIP_WRITE(Sn_MR2(sn), mr2)
#define getSn_MR2(sn) \
WIZCHIP_READ(Sn_MR2(sn))
#define setSn_KPALVTR(sn,kpalvtr) \
WIZCHIP_WRITE(Sn_KPALVTR(sn), kpalvtr)
#define getSn_KPALVTR(sn) \
WIZCHIP_READ(Sn_KPALVTR(sn))
#define getSn_TSR(sn) \
WIZCHIP_READ(Sn_TSR(sn))
#define setSn_RTR(sn,rtr) { \
WIZCHIP_WRITE(Sn_RTR(sn), (uint8_t)(rtr >> 8)); \
WIZCHIP_WRITE(WIZCHIP_OFFSET_INC(Sn_RTR(sn),1), (uint8_t) rtr); \
}
#define getSn_RTR(sn) \
(((uint16_t)WIZCHIP_READ(Sn_RTR(sn)) << 8) + WIZCHIP_READ(WIZCHIP_OFFSET_INC(Sn_RTR(sn),1)))
#define setSn_RCR(sn,rcr) \
WIZCHIP_WRITE(Sn_RCR(sn),rcr)
#define getSn_RCR(sn) \
WIZCHIP_READ(Sn_RCR(sn))
/////////////////////////////////////
// Sn_TXBUF & Sn_RXBUF IO function //
/////////////////////////////////////
/**
* @ingroup Basic_IO_function_W5100S
* @brief It copies data to internal TX memory
*
* @details This function reads the Tx write pointer register and after that,
* it copies the <i>wizdata(pointer buffer)</i> of the length of <i>len(variable)</i> bytes to internal TX memory
* and updates the Tx write pointer register.
* This function is being called by send() and sendto() function also.
*
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param wizdata Pointer buffer to write data
* @param len Data length
* @sa wiz_recv_data()
*/
void wiz_send_data(uint8_t sn, uint8_t *wizdata, uint16_t len);
/**
* @ingroup Basic_IO_function_W5100S
* @brief It copies data to your buffer from internal RX memory
*
* @details This function read the Rx read pointer register and after that,
* it copies the received data from internal RX memory
* to <i>wizdata(pointer variable)</i> of the length of <i>len(variable)</i> bytes.
* This function is being called by recv() also.
*
* @param sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param wizdata Pointer buffer to read data
* @param len Data length
* @sa wiz_send_data()
*/
void wiz_recv_data(uint8_t sn, uint8_t *wizdata, uint16_t len);
/**
* @ingroup Basic_IO_function_W5100S
* @brief It discard the received data in RX memory.
* @details It discards the data of the length of <i>len(variable)</i> bytes in internal RX memory.
* @param (uint8_t)sn Socket number. It should be <b>0 ~ @ref \_WIZCHIP_SOCK_NUM_</b>.
* @param len Data length
*/
void wiz_recv_ignore(uint8_t sn, uint16_t len);
//todo comment nedded
void wiz_mdio_write(uint8_t PHYMDIO_regadr, uint16_t var);
uint16_t wiz_mdio_read(uint8_t PHYMDIO_regadr);
// add code 2020-2-1
extern uint8_t wizchip_spi_readbyte(void); // add code 2020-2-1
extern void wizchip_spi_writebyte(uint8_t wb); // add code 2020-2-1
/// @cond DOXY_APPLY_CODE
/// @endcond
#endif //_W5100_H_