summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/ibmtok2e/tok162.c
blob: e95747b30e92e0157b155f37a31d28aac9917494 (plain) (blame)
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
/*++

Copyright (c) 1990  Microsoft Corporation

Module Name:

    TOK162.c

Abstract:

    This is the main file for the IBM Token-Ring 16/4 Adapter II.
    This driver conforms to the NDIS 3.0 Miniport interface.

Author:

    Kevin Martin (KevinMa) 27-Jan-1994

Environment:

    Kernel Mode.

Revision History:

--*/


#include <TOK162sw.h>

#pragma optimize("",off)
#pragma NDIS_INIT_FUNCTION(TOK162Initialize)

//
// If debug messages and logging is wanted, set the DBG environment variable.
//
#if DBG

//
// Variable which indicates the level of debugging messages. Values are
// defined below.
//
UCHAR  Tok162Debug = 0x0;

//
// Pointer to the logging table. The table is allocated when the adapter
// memory is allocated.
//
PUCHAR Tok162Log;

//
// Index pointer for the logging macro.
//
USHORT Tok162LogPlace = 0;

#endif

//
// Function declarations for functions private to this file.
//
BOOLEAN
TOK162AllocateAdapterMemory(
    IN PTOK162_ADAPTER Adapter
    );


NTSTATUS
DriverEntry(
    IN PDRIVER_OBJECT DriverObject,
    IN PUNICODE_STRING RegistryPath
    )
/*++

Routine Description:

    This is the primary initialization routine for the TOK162 driver.
    It is simply responsible for the intializing the wrapper and registering
    the MAC.  It then calls a system and architecture specific routine that
    will initialize and register each adapter.

Arguments:

    DriverObject - Pointer to driver object created by the system.

Return Value:

    The status of the operation.

--*/

{
    //
    // Receives the status of the NdisMRegisterMiniport operation.
    //
    NDIS_STATUS Status;

    //
    // Handle for our driver given to us by the wrapper.
    //
    NDIS_HANDLE NdisWrapperHandle;

    //
    // Miniport driver characteristics
    //
    char Tmp[sizeof(NDIS_MINIPORT_CHARACTERISTICS)];

    PNDIS_MINIPORT_CHARACTERISTICS TOK162Char =
        (PNDIS_MINIPORT_CHARACTERISTICS)(PVOID)Tmp;

    //
    // Initialize the wrapper.
    //
    NdisMInitializeWrapper(
                &NdisWrapperHandle,
                DriverObject,
                RegistryPath,
                NULL
                );

    //
    // Initialize the Miniport characteristics for the call to
    // NdisRegisterMac.
    //
    TOK162Char->MajorNdisVersion = TOK162_NDIS_MAJOR_VERSION;
    TOK162Char->MinorNdisVersion = TOK162_NDIS_MINOR_VERSION;

    //
    // Define the entry points into this driver for the wrapper.
    //
    TOK162Char->CheckForHangHandler =     TOK162CheckForHang;
    TOK162Char->DisableInterruptHandler = TOK162DisableInterrupt;
    TOK162Char->EnableInterruptHandler =  TOK162EnableInterrupt;
    TOK162Char->HaltHandler =             TOK162Halt;
    TOK162Char->HandleInterruptHandler =  TOK162HandleInterrupt;
    TOK162Char->InitializeHandler =       TOK162Initialize;
    TOK162Char->ISRHandler =              TOK162Isr;
    TOK162Char->QueryInformationHandler = TOK162QueryInformation;

    //
    // We don't support reconfigure so we pass a null.
    //
    TOK162Char->ReconfigureHandler =      NULL;
    TOK162Char->ResetHandler =            TOK162Reset;
    TOK162Char->SendHandler =             TOK162Send;
    TOK162Char->SetInformationHandler =   TOK162SetInformation;
    TOK162Char->TransferDataHandler =     TOK162TransferData;

    //
    // Register the driver.
    //
    Status = NdisMRegisterMiniport(
        NdisWrapperHandle,
        TOK162Char,
        sizeof(*TOK162Char)
        );

    //
    // If everything went ok, return STATUS_SUCCESS
    //
    if (Status == NDIS_STATUS_SUCCESS) {

        return STATUS_SUCCESS;

    }

    //
    // We can only get here if something went wrong with registering
    // the miniport or *all* of the adapters.
    //
    NdisTerminateWrapper(NdisWrapperHandle, NULL);
    return STATUS_UNSUCCESSFUL;
}


NDIS_STATUS
TOK162RegisterAdapter(
    IN NDIS_HANDLE ConfigurationHandle,
    IN NDIS_HANDLE MiniportAdapterHandle,
    IN PUCHAR  CurrentAddress,
    IN UINT PortAddress,
    IN UINT InterruptLevel,
    IN ULONG MaxFrameSize
    )

/*++

Routine Description:

    This routine (and its interface) are not portable.  They are
    defined by the OS, the architecture, and the particular TOK162
    implementation.

    This routine is responsible for the allocation of the datastructures
    for the driver as well as any hardware specific details necessary
    to talk with the device.

Arguments:

    ConfigurationHandle   - Handle passed to NdisRegisterAdapter.
    MiniportAdapterHandle - Handle received from
    CurrentAddress        - The network address found in the registry
    PortAddress           - The starting i/o port address found in the
                            registry

Return Value:

    Returns NDIS_STATUS_SUCCESS if everything goes ok, else
    if anything occurred that prevents the initialization
    of the adapter it returns an appropriate NDIS error.

--*/

{
    //
    // Holds the configuration info
    //
    UCHAR Config;

    //
    // Holds the value returned by NDIS calls.
    //
    NDIS_STATUS Status;

    //
    // Holds information needed when registering the adapter.
    //
    PTOK162_ADAPTER Adapter;

    // We put in this assertion to make sure that ushort are 2 bytes.
    // if they aren't then the initialization block definition needs
    // to be changed.
    //
    ASSERT(sizeof(TOK162_PHYSICAL_ADDRESS) == 4);

    //
    // Allocate the Adapter memory
    //
    TOK162_ALLOC_PHYS(&Status, &Adapter, sizeof(TOK162_ADAPTER));

    //
    //
    //
    //
    if (Status != NDIS_STATUS_SUCCESS) {

        return NDIS_STATUS_RESOURCES;

    }

    //
    // Allocation went ok, so zero out the memory
    //

    NdisZeroMemory(
        Adapter,
        sizeof(TOK162_ADAPTER)
        );

    //
    // Assign the handle and io port address base
    //
    Adapter->MiniportAdapterHandle = MiniportAdapterHandle;

    //
    // Set the interrupt level
    //
    Adapter->InterruptLevel = InterruptLevel;

    //
    // Notify the wrapper of our attributes
    //
    NdisMSetAttributes(
        MiniportAdapterHandle,
        (NDIS_HANDLE)Adapter,
        TRUE,
        NdisInterfaceEisa
        );

    //
    // Register our shutdown handler.
    //

    NdisMRegisterAdapterShutdownHandler(
        Adapter->MiniportAdapterHandle,     // miniport handle.
        Adapter,                            // shutdown context.
        TOK162Shutdown                      // shutdown handler.
        );

    //
    // Get the system configuration byte.
    //
    Status = NdisMRegisterIoPortRange(
                (PVOID *)(&(Adapter->PortIOAddress)),
                MiniportAdapterHandle,
                PortAddress + 0x0c86,
                0x20
                );

    //
    // Now read in the byte
    //
    READ_ADAPTER_UCHAR(Adapter,
        0,
        &Config
        );

    //
    // We don't need the io port anymore
    //
    NdisMDeregisterIoPortRange(Adapter->MiniportAdapterHandle,
        PortAddress + 0x0c86,
        0x20,
        Adapter->PortIOAddress
        );


    //
    // Get the link speed and set the buffer size
    //
    if (Config & 0x10) {

        Adapter->Running16Mbps = TRUE;
        Adapter->ReceiveBufferSize = RECEIVE_LIST_BUFFER_SIZE_16;

    } else {

        Adapter->Running16Mbps = FALSE;
        Adapter->ReceiveBufferSize = RECEIVE_LIST_BUFFER_SIZE_4;

    }

    //
    // Set receive buffersize based on what the user passed us
    //
    if (MaxFrameSize != 0) {

        Adapter->ReceiveBufferSize = (USHORT)MaxFrameSize;

    }

    //
    // Set PortIOBase
    //
    Adapter->PortIOBase = PortAddress;

    //
    // Set the receive, transmit, and command buffer and block
    // information.
    //
    Adapter->NumberOfReceiveBuffers          = RECEIVE_LIST_COUNT;
    Adapter->NumberOfAvailableTransmitBlocks = TRANSMIT_LIST_COUNT;
    Adapter->NumberOfAvailableCommandBlocks  = TOK162_NUMBER_OF_CMD_BLOCKS;

    //
    // Set the address the adapter should enter the ring with.
    //
    NdisMoveMemory(
        Adapter->CurrentAddress,
        CurrentAddress,
        TOK162_LENGTH_OF_ADDRESS
        );

    //
    // Register our port usage
    //
    Status = NdisMRegisterIoPortRange(
                (PVOID *)(&(Adapter->PortIOAddress)),
                MiniportAdapterHandle,
                Adapter->PortIOBase,
                0x10
                );

    //
    // If there was a problem with the registration, free the memory
    // associated with the adapter and return resource error
    //
    if (Status != NDIS_STATUS_SUCCESS) {

        goto ErrorLevel1;

    }

    //
    // Allocate the map registers
    //
    Status = NdisMAllocateMapRegisters(
                Adapter->MiniportAdapterHandle,
                0,
                TRUE,
                TRANSMIT_ENTRIES,
                Adapter->ReceiveBufferSize
                );

    //
    // If there were any problems, return resources error.
    //
    if (Status != NDIS_STATUS_SUCCESS) {

        goto ErrorLevel2;

    }

    //
    // Allocate memory for all of the adapter structures
    //
    if (TOK162AllocateAdapterMemory(Adapter) != TRUE) {

        goto ErrorLevel3;

    }

    //
    // Reset the variables associated with the adapter
    //
    TOK162ResetVariables(Adapter);

    //
    // Initialize deferred and reset timers
    //
    NdisMInitializeTimer(
        &Adapter->DeferredTimer,
        Adapter->MiniportAdapterHandle,
        (PVOID) TOK162DeferredTimer,
        (PVOID) Adapter
        );

    NdisMInitializeTimer(
        &Adapter->ResetTimer,
        Adapter->MiniportAdapterHandle,
        (PVOID) TOK162ResetHandler,
        (PVOID) Adapter
        );

    //
    // Initialize the adapter
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Calling InitialInit\n");)

    if (TOK162InitialInit(
                        Adapter
                        ) == FALSE) {

        //
        // Deregister the interrupt and return sources to wrapper. Initial
        // Init will set the interrupt level to 0 if the registerinterrupt
        // call was the reason initial init failed.
        //
        if (Adapter->InterruptLevel != 0) {

            NdisMDeregisterInterrupt(&Adapter->Interrupt);

        }

        goto ErrorLevel3;


    }

    //
    // Display success to the debugger.
    //
    VERY_LOUD_DEBUG(DbgPrint(
        "IBMTOK2E!Returning TRUE from RegisterAdapter\n");)

    return NDIS_STATUS_SUCCESS;

//
// ErrorLeve3 level indicates that we need to deregister the map registers
// and deallocate the adapter-related allocated memory.
//
ErrorLevel3:

    NdisMFreeMapRegisters(Adapter->MiniportAdapterHandle);
    TOK162DeleteAdapterMemory(Adapter);

//
// ErrorLevel2 indicates that we need to deregister the IO Port Range.
//
ErrorLevel2:

    NdisMDeregisterIoPortRange(Adapter->MiniportAdapterHandle,
        Adapter->PortIOBase,
        0x10,
        Adapter->PortIOAddress
        );


//
// ErrorLevel1 indicates that we need to free the memory allocated
// for the adapter structure. Log that register adapter failed.
//
ErrorLevel1:

    NdisWriteErrorLogEntry(
        MiniportAdapterHandle,
        NDIS_ERROR_CODE_OUT_OF_RESOURCES,
        0
        );

    VERY_LOUD_DEBUG(DbgPrint(
        "IBMTOK2E!Returning FALSE from RegisterAdapter\n");)

    TOK162_FREE_PHYS(Adapter);
    return NDIS_STATUS_RESOURCES;

}


extern
NDIS_STATUS
TOK162Initialize(
    OUT PNDIS_STATUS OpenErrorStatus,
    OUT PUINT SelectedMediumIndex,
    IN PNDIS_MEDIUM MediumArray,
    IN UINT MediumArraySize,
    IN NDIS_HANDLE MiniportAdapterHandle,
    IN NDIS_HANDLE ConfigurationHandle
    )

/*++

Routine Description:

    This routine is used to initialize each adapter card/chip.

Arguments:

    OpenErrorStatus       - Token Ring Adapter Open Status
    SelectedMediumIndex   - Medium used for transmission (Token Ring)
    MediumArray           - Array of mediums supported by wrapper
    MiniportAdapterHandle - Adapter Handle
    ConfigurationHandle   - Configuration Handle

Return Value:

    Result of registering this adapter.

--*/

{
    //
    // Handle returned by NdisOpenConfiguration
    //
    NDIS_HANDLE ConfigHandle;

    //
    // Simple indexing variable
    //
    ULONG i;

    //
    // Buffer to copy the passed in network address.
    //
    UCHAR NetworkAddress[TOK162_LENGTH_OF_ADDRESS];

    //
    // Receives address of the network address string in the registry
    //
    PVOID NetAddress;

    //
    // Length of above network address string
    //
    ULONG Length;

    //
    // Description string constants found in registry
    //
    NDIS_STRING IOAddressStr = NDIS_STRING_CONST("IOBaseAddress");
    NDIS_STRING MaxFrameStr  = NDIS_STRING_CONST("MAXFRAMESIZE");

    //
    // Return value from NDIS calls
    //
    NDIS_STATUS Status;

    //
    // Variable holding value returned by NdisReadConfiguration
    //
    PNDIS_CONFIGURATION_PARAMETER ReturnedValue;

    //
    // Eisa Slot adapter is in.
    //
    UINT    EisaSlot;

    //
    // Eisa Function information variable
    //
    NDIS_EISA_FUNCTION_INFORMATION  EisaInformation;

    //
    // Keep maxframesize
    //
    ULONG   MaxFrameSize;

    //
    // Cache Alignment variable
    //
    ULONG   Alignment;





    //
    // Search for the medium type (802.5)
    //
    for (i = 0; i < MediumArraySize; i++){


        if (MediumArray[i] == NdisMedium802_5){
            break;

        }

    }

    //
    // See if Token Ring is supported by the wrapper
    //
    if (i == MediumArraySize) {

        return NDIS_STATUS_UNSUPPORTED_MEDIA;

    }

    //
    // Tell wrapper the index in the medium array we're using
    //
    *SelectedMediumIndex = i;

    //
    // Get access to the configuration information
    //
    NdisOpenConfiguration(
        &Status,
        &ConfigHandle,
        ConfigurationHandle
        );

    //
    // If there was an error, return with the error code.
    //
    if (Status != NDIS_STATUS_SUCCESS) {

        return Status;

    }

    //
    // Read net address from the configuration info.
    //
    NdisReadNetworkAddress(
        &Status,
        &NetAddress,
        &Length,
        ConfigHandle
        );

    //
    // Make sure the call worked and the address returned is of valid length
    //
    if ((Length == TOK162_LENGTH_OF_ADDRESS) &&
        (Status == NDIS_STATUS_SUCCESS)) {

        NdisMoveMemory(
            NetworkAddress,
            NetAddress,
            TOK162_LENGTH_OF_ADDRESS
            );

    //
    // If not, set the current address to all 0's, forcing the adapter
    // to use the permanent address as the current address.
    //
    } else {

        NdisZeroMemory(
            NetworkAddress,
            TOK162_LENGTH_OF_ADDRESS
            );

    }

    //
    // Read the EISA Slot information to get the interrupt and port
    // address
    //
    NdisReadEisaSlotInformation(
        &Status,
        ConfigurationHandle,
        &EisaSlot,
        &EisaInformation
        );

    //
    // Get the max frame size if indicated by user
    //
    NdisReadConfiguration(
        &Status,
        &ReturnedValue,
        ConfigHandle,
        &MaxFrameStr,
        NdisParameterInteger
        );

    if (Status == NDIS_STATUS_SUCCESS) {

        MaxFrameSize = (ULONG)(ReturnedValue->ParameterData.IntegerData);

        Alignment = NdisGetCacheFillSize();

        if ( Alignment < sizeof(ULONG) ) {

            Alignment = sizeof(ULONG);
        }

        MaxFrameSize = (MaxFrameSize + (Alignment - 1)) & ~(Alignment - 1);

        if ((MaxFrameSize > RECEIVE_LIST_BUFFER_SIZE_16) ||
            (MaxFrameSize < RECEIVE_LIST_BUFFER_SIZE_4)) {

            MaxFrameSize = 0;

        }

    } else {

        MaxFrameSize = 0;

    }

    //
    // We're done with the configuration info.
    //
    NdisCloseConfiguration(ConfigHandle);

    //
    // Go register this adapter.
    //
    Status = TOK162RegisterAdapter(
                ConfigurationHandle,
                MiniportAdapterHandle,
                NetworkAddress,
                EisaSlot << 12,
                EisaInformation.EisaIrq[0].ConfigurationByte.Interrupt,
                MaxFrameSize
                );

    //
    // Return the value TOK162RegisterAdapter returned
    //
    return Status;
}


BOOLEAN
TOK162AllocateAdapterMemory(
    IN PTOK162_ADAPTER Adapter
    )
/*++

Routine Description:

    This routine allocates memory for:

    - DMA Test Area

    - SCB

    - SSB

    - ErrorLog Block

    - ReadAdapter Block

    - Initialization Block

    - Open Command Block

    - Command Queue

    - Transmit Command Queue

    - Transmit Buffers

    - Flush Buffer Pool

    - Receive Queue

    - Receive Buffers

    - Receive Flush Buffers

Arguments:

    Adapter - The adapter to allocate memory for.

Return Value:

    Returns FALSE if some memory needed for the adapter could not
    be allocated.

--*/

{
    //
    // Pointer to a Super Receive List.  Used while initializing
    // the Receive Queue.
    //
    PTOK162_SUPER_RECEIVE_LIST CurrentReceiveEntry;

    //
    // Pointer to a Super Transmit List.  Used while initializing
    // the Transmit Queue.
    //
    PTOK162_SUPER_TRANSMIT_LIST CurrentTransmitEntry;

    //
    // Pointer to a Command Block.  Used while initializing
    // the Command Queue.
    //
    PTOK162_SUPER_COMMAND_BLOCK CurrentCommandBlock;

    //
    // Simple iteration variable.
    //
    UINT i;

    //
    // Status of allocation
    //
    NDIS_STATUS Status;

#if DBG
    //
    // If debugging is specified, we need to allocate the trace log
    // buffer.
    //

    TOK162_ALLOC_PHYS(&Status, &Tok162Log, LOG_SIZE);

#endif
    //
    // Allocate the DMA Test Area
    //

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating DMA Test\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        256,
        FALSE,
        (PVOID *) &Adapter->DmaTest,
        &Adapter->DmaTestPhysical
        );

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Address of DMA Test Area is %lx\n",
        (ULONG)Adapter->DmaTest);)

    //
    // If the Dma Test ARea could not be allocated, a NULL pointer is
    // returned.
    //
    if (Adapter->DmaTest == NULL) {

        return FALSE;

    }

    //
    // Allocate the SCB
    //

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating SCB\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(SCB) + 8,
        FALSE,
        (PVOID *) &Adapter->Scb,
        &Adapter->ScbPhysical
        );

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Address of SCB is %lx - %lx\n",
        (ULONG)Adapter->Scb,
        NdisGetPhysicalAddressLow(Adapter->ScbPhysical));)

    //
    // If the Scb could not be allocated, a NULL pointer will have been
    // returned.
    //
    if (Adapter->Scb == NULL) {

        return FALSE;

    }

    //
    // Allocate the SSB
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating SSB\n");)

    NdisMAllocateSharedMemory(
                Adapter->MiniportAdapterHandle,
                sizeof(SSB) + 8,
                FALSE,
                (PVOID *) &Adapter->Ssb,
                &Adapter->SsbPhysical
                );

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Address of SSB is %lx - %lx\n",
        (ULONG)Adapter->Ssb,
        NdisGetPhysicalAddressLow(Adapter->SsbPhysical));)

    //
    // If the Ssb could not be allocated, a NULL pointer will have been
    // returned.
    //
    if (Adapter->Ssb == NULL) {

        return FALSE;

    }

    //
    // Allocate the ErrorLog Block
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating ErrorLog Block\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(TOK162_ERRORLOG) + 8,
        FALSE,
        (PVOID *) &Adapter->ErrorLog,
        &Adapter->ErrorLogPhysical
        );

    //
    // If the ErrorLog could not be allocated, a NULL pointer will have been
    // returned.
    //
    if (Adapter->ErrorLog == NULL) {

        return FALSE;

    }

    //
    // Allocate the ReadAdapter Buffer
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating ReadAdapterBuffer\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        4096,
        FALSE,
        (PVOID *) &Adapter->AdapterBuf,
        &Adapter->AdapterBufPhysical
        );

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Address of ReadAdapterBuf is %lx\n",(ULONG)Adapter->AdapterBuf);)

    //
    // If the ReadAdapter Buffer could not be allocated, a NULL
    // pointer will have been returned.
    //
    if (Adapter->AdapterBuf == NULL) {

        return FALSE;

    }

    //
    // Allocate the Initialization Block
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Initialization Block\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(ADAPTER_INITIALIZATION) + 8,
        FALSE,
        (PVOID *) &Adapter->InitializationBlock,
        &Adapter->InitializationBlockPhysical
        );

    //
    // If the Initialization Block could not be allocated, a NULL pointer
    // will have been returned.
    //
    if (Adapter->InitializationBlock == NULL) {

        return FALSE;

    }

    //
    // Allocate the Open Command Block
    //

    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Open Command\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(OPEN_COMMAND) + 8,
        FALSE,
        (PVOID *) &Adapter->Open,
        &Adapter->OpenPhysical
        );

    VERY_LOUD_DEBUG(DbgPrint(
        "IBMTOK2E!Address of Open Command is %lx\n",(ULONG)Adapter->Open);)

    //
    // If the Open Command Block could not be allocated, a NULL pointer
    // will have been returned.
    //
    if (Adapter->Open == NULL) {

        return FALSE;

    }

    //
    // Allocate the command block queue
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Command Block Queue\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(TOK162_SUPER_COMMAND_BLOCK) * (TOK162_NUMBER_OF_CMD_BLOCKS+1),
        FALSE,
        (PVOID *) &Adapter->CommandQueue,
        &Adapter->CommandQueuePhysical
        );

    //
    // If the Command Block Queue could not be allocated, a NULL pointer
    // will have been returned.
    //
    if (Adapter->CommandQueue == NULL) {

        return FALSE;

    }

    //
    // Initialize the command block queue command blocks
    //
    for (i = 0, CurrentCommandBlock = Adapter->CommandQueue;
        i < TOK162_NUMBER_OF_CMD_BLOCKS;
        i++, CurrentCommandBlock++
        ) {

        //
        // Set the state of this command block to free, the
        // NextPending pointer and Next pointer to null, and
        // the command timeout state to FALSE
        //
        CurrentCommandBlock->Hardware.State       = TOK162_STATE_FREE;
        CurrentCommandBlock->Hardware.NextPending = TOK162_NULL;
        CurrentCommandBlock->NextCommand          = NULL;
        CurrentCommandBlock->Timeout              = FALSE;

        //
        // Set the index of this command block
        //
        CurrentCommandBlock->CommandBlockIndex = (USHORT)i;

    }

    //
    // Allocate Flush Buffer Pool
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Flush Buffer Pool\n");)

    NdisAllocateBufferPool(
        &Status,
        (PVOID*)&Adapter->FlushBufferPoolHandle,
        Adapter->NumberOfReceiveBuffers + TRANSMIT_LIST_COUNT
        );

    //
    // If there was a problem allocating the flush buffer pool,
    // write out an errorlog entry, delete the allocated adapter memory,
    // and return FALSE
    //
    if (Status != NDIS_STATUS_SUCCESS) {

        return FALSE;

    }

    //
    // Allocate the Transmit Queue.
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Transmit Queue\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(TOK162_SUPER_TRANSMIT_LIST) *
        TRANSMIT_LIST_COUNT + 1,
        FALSE,
        (PVOID*)&Adapter->TransmitQueue,
        &Adapter->TransmitQueuePhysical
        );

    //
    // If the Transmit Queue could not be allocated, a NULL pointer will
    // have been returned.
    //
    if (Adapter->TransmitQueue == NULL) {

        return FALSE;

    }

    //
    // Initialize the transmit queue entries. First zero out the entire
    // queue memory.
    //
    NdisZeroMemory(
        Adapter->TransmitQueue,
        sizeof(TOK162_SUPER_TRANSMIT_LIST) * TRANSMIT_LIST_COUNT
        );

    //
    // Allocate the transmit buffers and attach them to the Transmit
    // Queue entries.
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Transmit Buffers\n");)

    for (i = 0, CurrentTransmitEntry = Adapter->TransmitQueue;
         i < TRANSMIT_LIST_COUNT;
         i++, CurrentTransmitEntry++
         ) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!TransmitEntry[%d] = %08x\n",i,
            CurrentTransmitEntry);)

        NdisMAllocateSharedMemory(
            Adapter->MiniportAdapterHandle,
            Adapter->ReceiveBufferSize+8,
            TRUE,
            &CurrentTransmitEntry->TransmitBuffer,
            &CurrentTransmitEntry->TransmitBufferPhysical
            );

        //
        // Build flush buffers
        //
        NdisAllocateBuffer(
            &Status,
            &CurrentTransmitEntry->FlushBuffer,
            Adapter->FlushBufferPoolHandle,
            CurrentTransmitEntry->TransmitBuffer,
            Adapter->ReceiveBufferSize+8
            );

        //
        // Initialize receive lists
        //
        NdisFlushBuffer(CurrentTransmitEntry->FlushBuffer, TRUE);

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Transmit Buffer is %08x\n",CurrentTransmitEntry->TransmitBuffer);)

        //
        // If the current buffer could not be allocated, write the errorlog
        // entry, delete allocated adapter memory, and return FALSE
        //
        if (!CurrentTransmitEntry->TransmitBuffer) {

            return FALSE;

        }

        //
        // Create a circular list of transmit buffers. For every one but the
        // last, set the forward pointer to the next entry. The last entry
        // has to point to the first entry (queue head).
        //
        if (i != (TRANSMIT_LIST_COUNT - 1)) {

            CurrentTransmitEntry->NextEntry = (PTOK162_SUPER_TRANSMIT_LIST)(
                (PUCHAR)(Adapter->TransmitQueue) +
                (i+1) * (sizeof(TOK162_SUPER_TRANSMIT_LIST)));


        } else {

            CurrentTransmitEntry->NextEntry = Adapter->TransmitQueue;

        }

    }

    //
    // Allocate the Receive Queue.
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Receive Queue\n");)

    NdisMAllocateSharedMemory(
        Adapter->MiniportAdapterHandle,
        sizeof(TOK162_SUPER_RECEIVE_LIST) *
        (Adapter->NumberOfReceiveBuffers+1),
        FALSE,
        (PVOID*)&Adapter->ReceiveQueue,
        &Adapter->ReceiveQueuePhysical
        );

    //
    // If the Receive Queue could not be allocated, a NULL pointer will
    // have been returned.
    //
    if (Adapter->ReceiveQueue == NULL) {

        return FALSE;

    }

    //
    // Initialize the receieve queue entries. First zero out the entire
    // queue memory.
    //
    NdisZeroMemory(
        Adapter->ReceiveQueue,
        sizeof(TOK162_SUPER_RECEIVE_LIST) * Adapter->NumberOfReceiveBuffers
        );

    //
    // Allocate the receive buffers and attach them to the Receive
    // Queue entries.
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Allocating Receive Buffers\n");)

    for (i = 0, CurrentReceiveEntry = Adapter->ReceiveQueue;
         i < Adapter->NumberOfReceiveBuffers;
         i++, CurrentReceiveEntry++
         ) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!ReceiveEntry[%d] = %08x\n",i,
            CurrentReceiveEntry);)

        NdisMAllocateSharedMemory(
            Adapter->MiniportAdapterHandle,
            Adapter->ReceiveBufferSize+8,
            TRUE,
            &CurrentReceiveEntry->ReceiveBuffer,
            &CurrentReceiveEntry->ReceiveBufferPhysical
            );

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Receive Buffer is %08x\n",CurrentReceiveEntry->ReceiveBuffer);)

        //
        // If the current buffer could not be allocated, write the errorlog
        // entry, delete allocated adapter memory, and return FALSE
        //
        if (!CurrentReceiveEntry->ReceiveBuffer) {

            return FALSE;

        }

        //
        // Build flush buffers
        //
        NdisAllocateBuffer(
            &Status,
            &CurrentReceiveEntry->FlushBuffer,
            Adapter->FlushBufferPoolHandle,
            CurrentReceiveEntry->ReceiveBuffer,
            Adapter->ReceiveBufferSize
            );

        if (Status != NDIS_STATUS_SUCCESS) {

            return FALSE;

        }

        //
        // Initialize receive lists
        //
        NdisFlushBuffer(CurrentReceiveEntry->FlushBuffer, FALSE);

        //
        // Set the CSTAT to indicate this buffer is free
        //
        CurrentReceiveEntry->Hardware.CSTAT = RECEIVE_CSTAT_REQUEST_RESET;

        //
        // Set the size of the buffer
        //
        CurrentReceiveEntry->Hardware.FrameSize =
            Adapter->ReceiveBufferSize;

        //
        // Create a circular list of receive buffers. For every one but the
        // last, set the forward pointer to the next entry. The last entry
        // has to point to the first entry (queue head).
        //
        if (i != (Adapter->NumberOfReceiveBuffers - 1)) {

            CurrentReceiveEntry->NextEntry = (PTOK162_SUPER_RECEIVE_LIST)(
                (PUCHAR)(Adapter->ReceiveQueue) +
                (i+1) * (sizeof(TOK162_SUPER_RECEIVE_LIST)));

        } else {

            CurrentReceiveEntry->NextEntry = Adapter->ReceiveQueue;

        }
    }

    //
    // If we made it this far, everything is ok. Return TRUE.
    //
    return TRUE;

}


VOID
TOK162DeleteAdapterMemory(
    IN PTOK162_ADAPTER Adapter
    )

/*++

Routine Description:

    This routine deallocates memory for:

    - DMA Test Area

    - SCB

    - SSB

    - ErrorLog Block

    - ReadAdapter Block

    - Initialization Block

    - Open Command Block

    - Command Queue

    - Transmit Command Queue

    - Transmit Buffers

    - Flush Buffer Pool

    - Receive Queue

    - Receive Buffers

    - Receive Flush Buffers

Arguments:

    Adapter - The adapter to deallocate memory for.

Return Value:

    None.

--*/

{

    //
    // Display to the debugger where we are
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!In delete adapter memory\n");)

    //
    // Free the Dma Test Area
    //
    if (Adapter->DmaTest) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing Dma Test Area\n");)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            256,
            FALSE,
            Adapter->DmaTest,
            Adapter->DmaTestPhysical
            );

    }

    //
    // Free the SCB
    //
    if (Adapter->Scb) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing SCB\n");)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(SCB) + 8,
            FALSE,
            Adapter->Scb,
            Adapter->ScbPhysical
            );

    }

    //
    // Free the SSB
    //
    if (Adapter->Ssb) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing SSB - %x %x\n",Adapter->Ssb,
            Adapter->SsbPhysical);)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(SSB) + 8,
            FALSE,
            Adapter->Ssb,
            Adapter->SsbPhysical
            );

    }

    //
    // Free the errorlog block
    //
    if (Adapter->ErrorLog) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing ErrorLog - %x\n",
            Adapter->ErrorLog);)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(TOK162_ERRORLOG) + 8,
            FALSE,
            Adapter->ErrorLog,
            Adapter->ErrorLogPhysical
            );

    }

    //
    // Free the read adapter block
    //
    if (Adapter->AdapterBuf) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing Read Adapter Block\n");)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            4096,
            FALSE,
            Adapter->AdapterBuf,
            Adapter->AdapterBufPhysical
            );

    }

    //
    // Free the initialization block
    //
    if (Adapter->InitializationBlock) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing Initialization Block\n");)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(ADAPTER_INITIALIZATION) + 8,
            FALSE,
            Adapter->InitializationBlock,
            Adapter->InitializationBlockPhysical
            );

    }

    //
    // Free the open command block
    //
    if (Adapter->Open) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing Open Block - %x\n",Adapter->Open);)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(OPEN_COMMAND) + 8,
            FALSE,
            Adapter->Open,
            Adapter->OpenPhysical
            );

    }

    //
    // Free the command queue
    //
    if (Adapter->CommandQueue) {

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing CommandQueue\n");)

        NdisMFreeSharedMemory(
            Adapter->MiniportAdapterHandle,
            sizeof(TOK162_SUPER_COMMAND_BLOCK) *
                (TOK162_NUMBER_OF_CMD_BLOCKS + 1),
            FALSE,
            Adapter->CommandQueue,
            Adapter->CommandQueuePhysical
            );

    }

    //
    // Free the transmit queue and transmit buffers
    //
    if (Adapter->TransmitQueue) {

        //
        // Pointer to current Transmit Entry being deallocated.
        //
        PTOK162_SUPER_TRANSMIT_LIST CurrentTransmitEntry;

        //
        // Simple iteration counter.
        //
        UINT i;

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing TransmitCommandQueue\n");)

        for (i = 0, CurrentTransmitEntry = Adapter->TransmitQueue;
            i < TRANSMIT_LIST_COUNT;
            i++, CurrentTransmitEntry++
            ) {

            if (CurrentTransmitEntry->TransmitBuffer) {

                NdisMFreeSharedMemory(
                    Adapter->MiniportAdapterHandle,
                    Adapter->ReceiveBufferSize,
                    TRUE,
                    CurrentTransmitEntry->TransmitBuffer,
                    CurrentTransmitEntry->TransmitBufferPhysical
                    );

            }

        }

        NdisMFreeSharedMemory(
                Adapter->MiniportAdapterHandle,
                sizeof(TOK162_SUPER_RECEIVE_LIST) * TRANSMIT_LIST_COUNT,
                FALSE,
                Adapter->TransmitQueue,
                Adapter->TransmitQueuePhysical
                );

    }

    //
    // Free the receive queue, receive buffers, and flush buffers
    //
    if (Adapter->ReceiveQueue) {

        //
        // Pointer to current Receive Entry being deallocated.
        //
        PTOK162_SUPER_RECEIVE_LIST CurrentReceiveEntry;

        //
        // Simple iteration counter.
        //
        UINT i;

        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing ReceiveCommandQueue\n");)

        for (i = 0, CurrentReceiveEntry = Adapter->ReceiveQueue;
            i < Adapter->NumberOfReceiveBuffers;
            i++, CurrentReceiveEntry++
            ) {

            if (CurrentReceiveEntry->ReceiveBuffer) {
                NdisMFreeSharedMemory(
                    Adapter->MiniportAdapterHandle,
                    Adapter->ReceiveBufferSize,
                    TRUE,
                    CurrentReceiveEntry->ReceiveBuffer,
                    CurrentReceiveEntry->ReceiveBufferPhysical
                    );


                if (CurrentReceiveEntry->FlushBuffer) {
                    NdisFreeBuffer(
                        CurrentReceiveEntry->FlushBuffer
                        );
                }
            }

        }

        NdisMFreeSharedMemory(
                Adapter->MiniportAdapterHandle,
                sizeof(TOK162_SUPER_RECEIVE_LIST) *
                Adapter->NumberOfReceiveBuffers,
                FALSE,
                Adapter->ReceiveQueue,
                Adapter->ReceiveQueuePhysical
                );

    }

    //
    // Free the flush buffer pool handle
    //
    if (Adapter->FlushBufferPoolHandle) {
        VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Freeing BufferPool\n");)
        NdisFreeBufferPool(
                    Adapter->FlushBufferPoolHandle
                    );
    }

}


extern
VOID
TOK162Halt(
    IN NDIS_HANDLE MiniportAdapterContext
    )

/*++

Routine Description:

    TOK162Halt removes an adapter previously initialized.

Arguments:

    MiniportAdapterContext - The context value that the Miniport returned
                             from Tok162Initialize; actually is pointer to
                             a TOK162_ADAPTER.

Return Value:

    None.

--*/

{
    //
    // Pointer to an adapter structure. Makes Context (passed in value)
    // a structure we can deal with.
    //
    PTOK162_ADAPTER Adapter =
        PTOK162_ADAPTER_FROM_CONTEXT_HANDLE(MiniportAdapterContext);

    //
    // Don't allow any more processing internally
    //
    // Adapter->ResetInProgress = TRUE;

    //
    // Shut down the chip.
    //
    TOK162DisableInterrupt(Adapter);

    //
    // Return resources to the wrapper
    //
    NdisMDeregisterInterrupt(&Adapter->Interrupt);

    NdisMDeregisterIoPortRange(Adapter->MiniportAdapterHandle,
        Adapter->PortIOBase,
        0x30,
        Adapter->PortIOAddress
        );

    NdisMFreeMapRegisters(Adapter->MiniportAdapterHandle);

    //
    // Free the allocated memory for the adapter-related structures
    //
    TOK162DeleteAdapterMemory(Adapter);

    //
    // Finally, free the allocated memory for the adapter structure itself
    //
    TOK162_FREE_PHYS(Adapter);

}


extern
VOID
TOK162Shutdown(
    IN NDIS_HANDLE MiniportAdapterContext
    )

/*++

Routine Description:

    TOK162Shutdown--  removes an adapter previously initialized.

Arguments:

    MiniportAdapterContext - The context value that the Miniport returned
                             from Tok162Initialize; actually is pointer to
                             a TOK162_ADAPTER.

Return Value:

    None.

--*/

{
    //
    // Pointer to an adapter structure. Makes Context (passed in value)
    // a structure we can deal with.
    //

    PTOK162_ADAPTER Adapter =
        PTOK162_ADAPTER_FROM_CONTEXT_HANDLE(MiniportAdapterContext);

    //
    // Reset the chip to get us off the ring.
    //
    TOK162ResetAdapter(Adapter);

}


NDIS_STATUS
TOK162Reset(
    OUT PBOOLEAN AddressingReset,
    IN NDIS_HANDLE MiniportAdapterContext
    )
/*++

Routine Description:

    The TOK162Reset request instructs the Miniport to issue a hardware reset
    to the network adapter.  The driver also resets its software state.  See
    the description of NdisMReset for a detailed description of this request.

Arguments:

    MiniportAdapterContext - Pointer to the adapter structure.

Return Value:

    The function value is the status of the operation.
--*/

{
    //
    // Pointer to an adapter structure. Makes Context (passed in value)
    // a structure we can deal with.
    //
    PTOK162_ADAPTER Adapter =
        PTOK162_ADAPTER_FROM_CONTEXT_HANDLE(MiniportAdapterContext);

    LOUD_DEBUG(DbgPrint("IBMTOK2E!Reset called\n");)

    //
    // Log reset called
    //
    IF_LOG('R');

    //
    // Make sure we aren't already doing a reset.
    //
    if (Adapter->ResetInProgress == FALSE) {

        Adapter->ResetInProgress = TRUE;

        //
        // Set to first state
        //
        Adapter->ResetState = CheckReset;

        //
        // Do the reset and return pending
        //
        TOK162SetupForReset(
            Adapter
            );

        return NDIS_STATUS_PENDING;

    } else {

        //
        // If we are doing a reset currently, return this fact.
        //
        return NDIS_STATUS_RESET_IN_PROGRESS;

    }

}


BOOLEAN
TOK162CheckForHang(
    IN NDIS_HANDLE MiniportAdapterContext
    )

/*++

Routine Description:

    This routine is called by the wrapper to determine if the adapter
    is hung.

Arguments:

    Context - Really a pointer to the adapter.

Return Value:

    None.

--*/
{

    //
    // Pointer to an adapter structure. Makes Context (passed in value)
    // a structure we can deal with.
    //
    PTOK162_ADAPTER Adapter =
        PTOK162_ADAPTER_FROM_CONTEXT_HANDLE(MiniportAdapterContext);

    //
    // Variable pointing to the outstanding command. Used to make the
    // code easier to read (could use Adapter->CommandOnCard).
    //
    PTOK162_SUPER_COMMAND_BLOCK FirstPendingCommand = Adapter->CommandOnCard;

    //
    // Variable pointing to the outstanding transmit. Used to make the
    // code easier to read (could use Adapter->TransmitOnCard).
    //

    //
    // If we're in the middle of a reset, just return false
    //
    if (Adapter->ResetInProgress == TRUE) {

        return FALSE;

    }

    //
    // First see if there is a command outstanding
    //
    if (FirstPendingCommand != NULL) {

        //
        // See if the command block has timed-out.
        //
        if (FirstPendingCommand->Timeout) {

            //
            // See if we have given it enough time
            //
            if ( FirstPendingCommand->TimeoutCount >= 40) {

               LOUD_DEBUG(DbgPrint("IBMTOK2E!Returning True from checkforhang\n");)
               return TRUE;

            } else {

                FirstPendingCommand->TimeoutCount++;

            }

        } else {

            //
            // Mark the current command as timed out and get the clock
            // rolling.
            //
            FirstPendingCommand->Timeout = TRUE;
            FirstPendingCommand->TimeoutCount = 0;

        }

    }

    //
    // If we got here, we aren't hung.
    //
    return FALSE;
}


NDIS_STATUS
TOK162TransferData(
    OUT PNDIS_PACKET Packet,
    OUT PUINT BytesTransferred,
    IN NDIS_HANDLE MiniportAdapterContext,
    IN NDIS_HANDLE MiniportReceiveContext,
    IN UINT ByteOffset,
    IN UINT BytesToTransfer
    )

/*++

Routine Description:

    A protocol calls the TOK162TransferData request (indirectly via
    NdisTransferData) from within its Receive event handler
    to instruct the Miniport to copy the contents of the received packet
    a specified packet buffer.

Arguments:

    MiniportAdapterContext - The context value returned by the driver when the
                             adapter was initialized.  In reality this is a
                             pointer to TOK162_ADAPTER.

    MiniportReceiveContext - The context value passed by the driver on its
                             call to NdisMIndicateReceive.  The driver can
                             use this value to determine which packet, on
                             which adapter, is being received.

    ByteOffset             - An unsigned integer specifying the offset within
                             the received packet at which the copy is to begin.
                             If the entire packet is to be copied,
                             ByteOffset must be zero.

    BytesToTransfer        - An unsigned integer specifying the number of
                             bytes to copy.  It is legal to transfer zero
                             bytes; this has no effect.  If the sum of
                             ByteOffset and BytesToTransfer is greater than
                             the size of the received packet, then the
                             remainder of the packet (starting from
                             ByteOffset) is transferred, and the trailing
                             portion of the receive buffer is not modified.

    Packet                 - A pointer to a descriptor for the packet storage
                             into which the MAC is to copy the received packet.

    BytesTransfered        - A pointer to an unsigned integer.  The miniport
                             writes the actual number of bytes transferred
                             into this location.  This value is not valid if
                             the return status is STATUS_PENDING.

Return Value:

    The function value is the status of the operation.

--*/
{

    //
    // Pointer to an adapter structure. Makes Context (passed in value)
    // a structure we can deal with.
    //
    PTOK162_ADAPTER Adapter =
        PTOK162_ADAPTER_FROM_CONTEXT_HANDLE(MiniportAdapterContext);

    //
    // Holds the count of the number of ndis buffers comprising the
    // destination packet.
    //
    UINT DestinationBufferCount;

    //
    // Points to the buffer into which we are putting data.
    //
    PNDIS_BUFFER DestinationCurrentBuffer;

    //
    // Points to the location in Buffer from which we are extracting data.
    //
    PUCHAR SourceCurrentAddress;

    //
    // Holds the virtual address of the current destination buffer.
    //
    PVOID DestinationVirtualAddress;

    //
    // Holds the length of the current destination buffer.
    //
    UINT DestinationCurrentLength;

    //
    // Keep a local variable of BytesTransferred so we aren't referencing
    // through a pointer.
    //
    UINT LocalBytesTransferred = 0;

    //
    // Display where we are on the debugger
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Transfer Data called\n");)

    //
    // Display number of bytes to transfer on the debugger
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Copying %u bytes\n",BytesToTransfer);)

    //
    // Initialize the number of bytes transferred to 0
    //
    *BytesTransferred = 0;

    //
    // If we don't have any more to transfer, we're done
    //
    if (BytesToTransfer == 0) {

        return NDIS_STATUS_SUCCESS;

    }

    //
    // Get the first buffer of the destination.
    //
    NdisQueryPacket(
        Packet,
        NULL,
        &DestinationBufferCount,
        &DestinationCurrentBuffer,
        NULL
        );

    //
    // Could have a null packet. If so, we are done.
    //
    if (DestinationBufferCount == 0) {

        return NDIS_STATUS_SUCCESS;

    }

    //
    // Get information on the buffer.
    //
    NdisQueryBuffer(
        DestinationCurrentBuffer,
        &DestinationVirtualAddress,
        &DestinationCurrentLength
        );

    //
    // Set up the source address.
    //
    SourceCurrentAddress = (PCHAR)(MiniportReceiveContext) + ByteOffset;

    //
    // Do the actual transfer from source to destination
    //
    while (LocalBytesTransferred < BytesToTransfer) {

        //
        // Check to see whether we've exhausted the current destination
        // buffer.  If so, move onto the next one.
        //
        if (!DestinationCurrentLength) {

            NdisGetNextBuffer(
                DestinationCurrentBuffer,
                &DestinationCurrentBuffer
                );

            if (!DestinationCurrentBuffer) {

                //
                // We've reached the end of the packet.  We return
                // with what we've done so far. (Which must be shorter
                // than requested.)
                //

                break;

            }

            NdisQueryBuffer(
                DestinationCurrentBuffer,
                &DestinationVirtualAddress,
                &DestinationCurrentLength
                );

            continue;

        }

        //
        // Copy the data.
        //
        {
            //
            // Holds the amount of data to move.
            //
            UINT AmountToMove;

            //
            // Holds the amount desired remaining.
            //
            UINT Remaining = BytesToTransfer - LocalBytesTransferred;


            AmountToMove = DestinationCurrentLength;

            AmountToMove = ((Remaining < AmountToMove)?
                            (Remaining):(AmountToMove));

            NdisMoveMemory(
                DestinationVirtualAddress,
                SourceCurrentAddress,
                AmountToMove
                );

            //
            // Update pointers and counters
            //
            SourceCurrentAddress += AmountToMove;
            LocalBytesTransferred += AmountToMove;
            DestinationCurrentLength -= AmountToMove;

        }

    }

    //
    // Indicate how many bytes were transferred
    //
    *BytesTransferred = LocalBytesTransferred;

    //
    // Display total bytes transferred on debugger
    //
    VERY_LOUD_DEBUG(DbgPrint("IBMTOK2E!Total bytes transferred = %x\n",
        *BytesTransferred);)

    return NDIS_STATUS_SUCCESS;

}