summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/elnkmc/elnk.c
blob: 4170dc9d3fc60caff6573148940c87999c603e6e (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
/*++

Copyright (c) 1992  Microsoft Corporation

Module Name:

    Elnk.c

Abstract:

    This is the main file for the 3Com Etherlink/MC and Etherlink 16
    Ethernet adapters. This driver conforms to the NDIS 3.0 interface.

Author:

    Johnson R. Apacible (JohnsonA) 10-June-1991

Environment:

    Kernel Mode - Or whatever is the equivalent on OS/2 and DOS.

Revision History:


--*/

#include <ndis.h>

//
// So we can trace things...
//
#define STATIC

#include <efilter.h>
#include <elnkhw.h>
#include <elnksw.h>
#include "keywords.h"

//
// Globals
//

NDIS_PHYSICAL_ADDRESS HighestAcceptableMax =
    NDIS_PHYSICAL_ADDRESS_CONST(-1,-1);

NDIS_HANDLE ElnkMacHandle;
LIST_ENTRY ElnkAdapterList;
NDIS_SPIN_LOCK ElnkAdapterListLock;
NDIS_HANDLE ElnkNdisWrapperHandle;

PDRIVER_OBJECT ElnkDriverObject;

STATIC
BOOLEAN
ElnkInitialInit(
    IN PELNK_ADAPTER Adapter,
    IN UINT ElnkInterruptVector
    );

STATIC
NDIS_STATUS
ElnkOpenAdapter(
    OUT PNDIS_STATUS OpenErrorStatus,
    OUT NDIS_HANDLE *MacBindingHandle,
    OUT PUINT SelectedMediumIndex,
    IN PNDIS_MEDIUM MediumArray,
    IN UINT MediumArraySize,
    IN NDIS_HANDLE NdisBindingContext,
    IN NDIS_HANDLE MacAdapterContext,
    IN UINT OpenOptions,
    IN PSTRING AddressingInformation OPTIONAL
    );

VOID
Elnk16GenerateIdPattern(
    IN PELNK_ADAPTER Adapter
    );

STATIC
NDIS_STATUS
ElnkCloseAdapter(
    IN NDIS_HANDLE MacBindingHandle
    );

extern
VOID
ElnkQueueRequest(
    IN PELNK_ADAPTER Adapter,
    IN PNDIS_REQUEST NdisRequest
    );

STATIC
NDIS_STATUS
ElnkReset(
    IN NDIS_HANDLE MacBindingHandle
    );

VOID
ElnkUnloadMac(
    IN NDIS_HANDLE MacMacContext
    );

VOID
ElnkRemoveAdapter(
    IN NDIS_HANDLE MacAdapterContext
    );

NDIS_STATUS
ElnkAddAdapter(
    IN NDIS_HANDLE MacMacContext,
    IN NDIS_HANDLE ConfigurationHandle,
    IN PNDIS_STRING DeviceName
    );

STATIC
VOID
ElnkCloseAction(
    IN NDIS_HANDLE MacBindingHandle
    );

VOID
InitializeAdapterVariables(
    IN PELNK_ADAPTER Adapter
    );

VOID
ResetAdapterVariables(
    IN PELNK_ADAPTER Adapter
    );

VOID
ElnkDeleteAdapterMemory(
    IN PELNK_ADAPTER Adapter
    );

BOOLEAN
ElnkAllocateAdapterMemory(
    IN PELNK_ADAPTER Adapter
    );

NTSTATUS
DriverEntry(
    IN PDRIVER_OBJECT DriverObject,
    IN PUNICODE_STRING RegistryPath
    );


#pragma NDIS_INIT_FUNCTION(DriverEntry)

NTSTATUS
DriverEntry(
    IN PDRIVER_OBJECT DriverObject,
    IN PUNICODE_STRING RegistryPath
    )

/*++

Routine Description:

    This is the primary initialization routine for the Elnk 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 NdisRegisterMac operation.
    //
    NDIS_STATUS Status;
    NDIS_HANDLE NdisWrapperHandle;

#if ELNKMC
    static NDIS_STRING MacName = NDIS_STRING_CONST("ELNKMC");
    #if NDIS_WIN
        UCHAR pIds[sizeof (EISA_MCA_ADAPTER_IDS) + sizeof (USHORT)];
    #endif
#else
    static NDIS_STRING MacName = NDIS_STRING_CONST("ELNK16");
#endif

    char Tmp[sizeof(NDIS_MAC_CHARACTERISTICS)];
    PNDIS_MAC_CHARACTERISTICS ElnkChar = (PNDIS_MAC_CHARACTERISTICS)Tmp;


#if NDIS_WIN
#if ELNKMC
    ((PEISA_MCA_ADAPTER_IDS)pIds)->nEisaAdapters=0;
    ((PEISA_MCA_ADAPTER_IDS)pIds)->nMcaAdapters=1;
    *(PUSHORT)(((PEISA_MCA_ADAPTER_IDS)pIds)->IdArray)=ELNKMC_ADAPTER_ID;
    (PVOID) DriverObject = (PVOID) pIds;
#endif
#endif

    //
    // Initialize the wrapper.
    //

    NdisInitializeWrapper(
                &NdisWrapperHandle,
                DriverObject,
                RegistryPath,
                NULL
                );


    ElnkDriverObject = DriverObject;
    ElnkNdisWrapperHandle = NdisWrapperHandle;
    //
    // Initialize the MAC characteristics for the call to
    // NdisRegisterMac.
    //

    ElnkChar->MajorNdisVersion = ELNK_NDIS_MAJOR_VERSION;
    ElnkChar->MinorNdisVersion = ELNK_NDIS_MINOR_VERSION;
    ElnkChar->OpenAdapterHandler = ElnkOpenAdapter;
    ElnkChar->CloseAdapterHandler = ElnkCloseAdapter;
    ElnkChar->RequestHandler = ElnkRequest;
    ElnkChar->SendHandler = ElnkSend;
    ElnkChar->TransferDataHandler = ElnkTransferData;
    ElnkChar->ResetHandler = ElnkReset;
    ElnkChar->QueryGlobalStatisticsHandler = ElnkQueryGlobalStatistics;
    ElnkChar->UnloadMacHandler = ElnkUnloadMac;
    ElnkChar->AddAdapterHandler = ElnkAddAdapter;
    ElnkChar->RemoveAdapterHandler = ElnkRemoveAdapter;
    ElnkChar->Name = MacName;

    //
    // Initialize Globals
    //

    InitializeListHead(&ElnkAdapterList);
    NdisAllocateSpinLock(&ElnkAdapterListLock);

    NdisRegisterMac(
        &Status,
        &ElnkMacHandle,
        NdisWrapperHandle,
        NULL,
        ElnkChar,
        sizeof(*ElnkChar)
        );

    if (Status != NDIS_STATUS_SUCCESS) {

        if ELNKDEBUG DPrint1("Elnk: NdisRegisterMac failed\n");

        NdisFreeSpinLock(&ElnkAdapterListLock);
        NdisTerminateWrapper(NdisWrapperHandle, NULL);
        return NDIS_STATUS_FAILURE;
    }

    return(NDIS_STATUS_SUCCESS);

}

#if ELNKMC

#pragma NDIS_INIT_FUNCTION(ElnkmcRegisterAdapter)

NDIS_STATUS
ElnkmcRegisterAdapter(
    IN NDIS_HANDLE NdisMacHandle,
    IN NDIS_HANDLE ConfigurationHandle,
    IN PNDIS_STRING DeviceName,
    IN UINT ElnkInterruptVector,
    IN NDIS_PHYSICAL_ADDRESS ElnkSharedRam,
    IN USHORT ElnkIOBase,
    IN PUCHAR CurrentAddress,
    IN UINT MaximumMulticastAddresses,
    IN UINT MaximumOpenAdapters,
    IN BOOLEAN ConfigError,
    IN NDIS_STATUS ConfigErrorCode
    )

/*++

Routine Description:

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

    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:

    NdisMacHandle - The handle given back to the mac from ndis when
    the mac registered itself.

    ConfigurationHandle - Handle passed to MacAddAdapter.

    DeviceName - The string containing the name to give to the device
    adapter.  This name is preallocated by the caller and cannot be
    reused until the adapter is unloaded.

    ElnkInterruptVector - The interrupt vector to used for the adapter.

    ElnkSharedRam - address of the card RAM to be mapped.

    ElnkIOBase - base address of the card port I/O addresses.

    CurrentAddress - the alternative address to be used by the card. If NULL,
    the BIA is used.

    MaximumMulticastAddresses - The maximum number of multicast
    addresses to filter at any one time.

    MaximumOpenAdapters - The maximum number of opens at any one time.

    ConfigError - Was there a configuration error

    ConfigErrorCode - The NDIS_ERROR_CODE to log as the error.

Return Value:

    Returns false if anything occurred that prevents the initialization
    of the adapter.

--*/

{

    //
    // Pointer for the adapter root.
    //
    PELNK_ADAPTER Adapter;

    //
    // status of various calls
    //

    NDIS_STATUS Status;

    //
    // adapter information
    //
    NDIS_ADAPTER_INFORMATION AdapterInformation;

    //
    // Allocate the Adapter block.
    //

    Status = ELNK_ALLOC_PHYS(&Adapter, sizeof(ELNK_ADAPTER));

    if ( Status == NDIS_STATUS_SUCCESS ) {

        NdisZeroMemory(
            Adapter,
            sizeof(ELNK_ADAPTER)
            );


        Adapter->NdisMacHandle = NdisMacHandle;

        //
        // Should an alternative address be used?
        //

        if (CurrentAddress != NULL) {
            Adapter->AddressChanged = TRUE;
            ETH_COPY_NETWORK_ADDRESS(
                        Adapter->CurrentAddress,
                        CurrentAddress
                        );
        } else {
            Adapter->AddressChanged = FALSE;
        }

        //
        // Set the port addresses.
        //

        Adapter->IoBase = ElnkIOBase;
        Adapter->CurrentCsr = CSR_DEFAULT;

        Adapter->IsExternal = TRUE;

        Adapter->CardOffset = 0xC000;
        Adapter->SharedRamSize = 16;
        Adapter->SharedRamPhys = NdisGetPhysicalAddressLow(ElnkSharedRam);
        Adapter->InterruptVector = ElnkInterruptVector;

        Adapter->NumberOfTransmitBuffers =
                                ELNKMC_NUMBER_OF_TRANSMIT_BUFFERS;
        Adapter->NumberOfReceiveBuffers =
                                ELNKMC_NUMBER_OF_RECEIVE_BUFFERS;

        Adapter->MemoryIsMapped = FALSE;

        //
        // Initialize the interrupt.
        //

        InitializeListHead(&Adapter->OpenBindings);
        InitializeListHead(&Adapter->CloseList);

        Adapter->IsrLevel = (KIRQL)(HIGH_LEVEL - ElnkInterruptVector);
        InitializeAdapterVariables(Adapter);
        ResetAdapterVariables(Adapter);


        //
        // We can start the chip.  We may not
        // have any bindings to indicate to but this
        // is unimportant.
        //

        NdisZeroMemory(&AdapterInformation, sizeof(NDIS_ADAPTER_INFORMATION));

        AdapterInformation.DmaChannel = 0;
        AdapterInformation.Master = FALSE;
        AdapterInformation.AdapterType = NdisInterfaceMca;
        AdapterInformation.PhysicalMapRegistersNeeded = 0;
        AdapterInformation.MaximumPhysicalMapping = 0;
        AdapterInformation.NumberOfPortDescriptors = 1;
        AdapterInformation.PortDescriptors[0].InitialPort = (ULONG)(Adapter->IoBase);
        AdapterInformation.PortDescriptors[0].NumberOfPorts = 0x10;
        AdapterInformation.PortDescriptors[0].PortOffset = NULL;

        if (NdisRegisterAdapter(
                &Adapter->NdisAdapterHandle,
                Adapter->NdisMacHandle,
                Adapter,
                ConfigurationHandle,
                DeviceName,
                &AdapterInformation
                ) != NDIS_STATUS_SUCCESS) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );
            if ELNKDEBUG DPrint1("ElnkmcRegisterAdapter: NdisRegisterAdapter failed\n");
            ELNK_FREE_PHYS(Adapter);
            return NDIS_STATUS_FAILURE;

        }

        if (ConfigError) {

            ElnkLogError(
                Adapter,
                registerAdapter,
                ConfigErrorCode,
                0
                );

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);

            ELNK_FREE_PHYS(Adapter);

            return(NDIS_STATUS_FAILURE);

        }

        //
        // Allocate adapter structures
        //

        if (!ElnkAllocateAdapterMemory(Adapter)) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );
            if ELNKDEBUG DPrint1("ElnkRegisterAdapter - unsuccessful memory allocation\n");

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            ELNK_FREE_PHYS(Adapter);
            return(NDIS_STATUS_RESOURCES);
        }

        NdisInitializeTimer(
            &Adapter->DeadmanTimer,
            (PVOID) ElnkDeadmanDpc,
            (PVOID) Adapter
            );

        NdisInitializeTimer(
            &Adapter->DeferredTimer,
            (PVOID) ElnkStandardInterruptDpc,
            (PVOID) Adapter
            );

        NdisAllocateSpinLock(&Adapter->Lock);

		//
		// Get station address
		//
		ElnkGetStationAddress(Adapter);
	
		//
		// Check for validity of the address
		//
		if (((Adapter->NetworkAddress[0] == 0xFF) &&
			 (Adapter->NetworkAddress[1] == 0xFF) &&
			 (Adapter->NetworkAddress[2] == 0xFF) &&
			 (Adapter->NetworkAddress[3] == 0xFF) &&
			 (Adapter->NetworkAddress[4] == 0xFF) &&
			 (Adapter->NetworkAddress[5] == 0xFF)) ||
			((Adapter->NetworkAddress[0] == 0x00) &&
			 (Adapter->NetworkAddress[1] == 0x00) &&
			 (Adapter->NetworkAddress[2] == 0x00) &&
			 (Adapter->NetworkAddress[3] == 0x00) &&
			 (Adapter->NetworkAddress[4] == 0x00) &&
			 (Adapter->NetworkAddress[5] == 0x00)))
		{
			ElnkLogError(
					Adapter,
					startChip,
					NDIS_ERROR_CODE_INVALID_VALUE_FROM_ADAPTER,
					0);

			return(NDIS_STATUS_FAILURE);
		}

        //
        // Do the initial init first so we can get the adapter's address
        // before creating the filter DB.
        //
        Adapter->FilterDB = NULL;

        if (!EthCreateFilter(
                    MaximumMulticastAddresses,
                    ElnkChangeAddresses,
                    ElnkChangeClass,
                    ElnkCloseAction,
                    Adapter->CurrentAddress,
                    &Adapter->Lock,
                    &Adapter->FilterDB
                    )) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );
            if ELNKDEBUG
				DPrint1("ElnkRegisterAdapter - unsuccessful filter create.\n");

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            NdisFreeSpinLock(&Adapter->Lock);
            ELNK_FREE_PHYS(Adapter);
            return NDIS_STATUS_RESOURCES;
        }

        if (!ElnkInitialInit(Adapter, ElnkInterruptVector))
		{
			EthDeleteFilter(Adapter->FilterDB);
            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            NdisFreeSpinLock(&Adapter->Lock);
            ELNK_FREE_PHYS(Adapter);

            return NDIS_STATUS_FAILURE;
        }
		else
		{
            //
            // Record it in the global adapter list.
            //

            NdisInterlockedInsertTailList(&ElnkAdapterList,
                                          &Adapter->AdapterList,
                                          &ElnkAdapterListLock
                                         );
            return NDIS_STATUS_SUCCESS;

        }


    } else {

        if ELNKDEBUG DPrint1("ElnkRegisterAdapter - failed allocation of adapter block.\n");
        return NDIS_STATUS_RESOURCES;

    }

}
#else


#pragma NDIS_INIT_FUNCTION(Elnk16RegisterAdapter)

NDIS_STATUS
Elnk16RegisterAdapter(
    IN NDIS_HANDLE NdisMacHandle,
    IN NDIS_HANDLE ConfigurationHandle,
    IN PNDIS_STRING DeviceName,
    IN UINT InterruptVector,
    IN NDIS_PHYSICAL_ADDRESS WinBase,
    IN UINT WindowSize,
    IN USHORT IoBase,
    IN BOOLEAN IsExternal,
    IN BOOLEAN ZwsEnabled,
    IN PUCHAR CurrentAddress,
    IN UINT MaximumMulticastAddresses,
    IN UINT MaximumOpenAdapters,
    IN BOOLEAN ConfigError,
    IN NDIS_STATUS ConfigErrorCode
    )

/*++

Routine Description:

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

    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:

    NdisMacHandle - The handle given back to the mac from ndis when
    the mac registered itself.

    ConfigurationHandle - Handle passed to MacAddAdapter.

    DeviceName - The string containing the name to give to the device
    adapter.  This name is preallocated by the caller and cannot be
    reused until the adapter is unloaded.

    InterruptVector - The interrupt vector to used for the adapter.

    WinBase - Base address of card window.

    WindowSize - Size of card window.

    IoBase - address of I/O base register.

    IsExternal - are we using the external transceiver?

    ZwsEnable - should Zero Wait Status be enabled

    CurrentAddress - the alternative address to be used by the card. If NULL,
    the BIA is used.

    MaximumMulticastAddresses - The maximum number of multicast
    addresses to filter at any one time.

    MaximumOpenAdapters - The maximum number of opens at any one time.

    ConfigError - Was there a configuration error

    ConfigErrorCode - The NDIS_ERROR_CODE to log as the error.

Return Value:

    Returns NDIS_STATUS_FAILURE if anything occurred that prevents the initialization
    of the adapter.

--*/

{

    //
    // Pointer for the adapter root.
    //
    PELNK_ADAPTER Adapter;

    //
    // status of various calls
    //

    NDIS_STATUS Status;

    //
    // adapter information
    //
    NDIS_ADAPTER_INFORMATION AdapterInformation;

    //
    // Allocate the Adapter block.
    //

    Status = ELNK_ALLOC_PHYS(&Adapter, sizeof(ELNK_ADAPTER));

    if ( Status == NDIS_STATUS_SUCCESS ) {

        NdisZeroMemory(
            Adapter,
            sizeof(ELNK_ADAPTER)
            );

        Adapter->NdisMacHandle = NdisMacHandle;

        //
        // Should an alternative address be used?
        //

        if (CurrentAddress != NULL) {
            Adapter->AddressChanged = TRUE;
            ETH_COPY_NETWORK_ADDRESS(
                        Adapter->CurrentAddress,
                        CurrentAddress
                        );
        } else {
            Adapter->AddressChanged = FALSE;
        }

        //
        // Set the port addresses.
        //

        Adapter->IoBase = IoBase;
        Adapter->CurrentCsr = CSR_DEFAULT;

        Adapter->SharedRamPhys = NdisGetPhysicalAddressLow(WinBase);
        Adapter->SharedRamSize = WindowSize;

        //
        // Allocate memory for all of the adapter structures.
        //

        Adapter->MemoryIsMapped = FALSE;

        //
        // Initialize the interrupt.
        //

        InitializeListHead(&Adapter->OpenBindings);
        InitializeListHead(&Adapter->CloseList);

        Adapter->IsrLevel = (KIRQL)(HIGH_LEVEL - InterruptVector);
        Adapter->InterruptVector = (UINT) InterruptVector;

        //
        // We can start the chip.  We may not
        // have any bindings to indicate to but this
        // is unimportant.
        //

        NdisZeroMemory(&AdapterInformation, sizeof(NDIS_ADAPTER_INFORMATION));

        AdapterInformation.DmaChannel = 0;
        AdapterInformation.Master = FALSE;
        AdapterInformation.AdapterType = NdisInterfaceIsa;
        AdapterInformation.PhysicalMapRegistersNeeded = 0;
        AdapterInformation.MaximumPhysicalMapping = 0;
        AdapterInformation.NumberOfPortDescriptors = 1;
        AdapterInformation.PortDescriptors[0].InitialPort = (ULONG)(Adapter->IoBase);
        AdapterInformation.PortDescriptors[0].NumberOfPorts = 0x10;
        AdapterInformation.PortDescriptors[0].PortOffset = NULL;

        if (NdisRegisterAdapter(
                &Adapter->NdisAdapterHandle,
                Adapter->NdisMacHandle,
                Adapter,
                ConfigurationHandle,
                DeviceName,
                &AdapterInformation
                ) != NDIS_STATUS_SUCCESS) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );

            if ELNKDEBUG DPrint1("Elnk16RegisterAdapter: NdisRegisterAdapter failed\n");
            ELNK_FREE_PHYS(Adapter);
            return NDIS_STATUS_FAILURE;

        }

        if (ConfigError) {

            ElnkLogError(
                Adapter,
                registerAdapter,
                ConfigErrorCode,
                0
                );

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);

            ELNK_FREE_PHYS(Adapter);

            return(NDIS_STATUS_FAILURE);

        }

        //
        // Verify the Configuration of the hardware
        //

        if (!Elnk16ConfigureAdapter(
                                Adapter,
                                IsExternal,
                                ZwsEnabled
                                )) {

            ElnkLogError(
                Adapter,
                registerAdapter,
                NDIS_ERROR_CODE_ADAPTER_NOT_FOUND,
                0
                );

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            ELNK_FREE_PHYS(Adapter);
            return(NDIS_STATUS_FAILURE);
        }

        //
        // Allocate adapter structures
        //

        if (!ElnkAllocateAdapterMemory(Adapter)) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );
            if ELNKDEBUG DPrint1("ElnkRegisterAdapter - unsuccessful memory allocation\n");

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            ELNK_FREE_PHYS(Adapter);
            return(NDIS_STATUS_FAILURE);
        }

        InitializeAdapterVariables(Adapter);
        ResetAdapterVariables(Adapter);

        NdisInitializeTimer(
            &Adapter->DeadmanTimer,
            (PVOID) ElnkDeadmanDpc,
            (PVOID) Adapter
            );

        NdisInitializeTimer(
            &Adapter->DeferredTimer,
            (PVOID) ElnkStandardInterruptDpc,
            (PVOID) Adapter
            );

        NdisAllocateSpinLock(&Adapter->Lock);

		//
		// Get station address
		//
		ElnkGetStationAddress(Adapter);
	
		//
		// Check for validity of the address
		//
		if (((Adapter->NetworkAddress[0] == 0xFF) &&
			 (Adapter->NetworkAddress[1] == 0xFF) &&
			 (Adapter->NetworkAddress[2] == 0xFF) &&
			 (Adapter->NetworkAddress[3] == 0xFF) &&
			 (Adapter->NetworkAddress[4] == 0xFF) &&
			 (Adapter->NetworkAddress[5] == 0xFF)) ||
			((Adapter->NetworkAddress[0] == 0x00) &&
			 (Adapter->NetworkAddress[1] == 0x00) &&
			 (Adapter->NetworkAddress[2] == 0x00) &&
			 (Adapter->NetworkAddress[3] == 0x00) &&
			 (Adapter->NetworkAddress[4] == 0x00) &&
			 (Adapter->NetworkAddress[5] == 0x00)))
		{
			ElnkLogError(
					Adapter,
					startChip,
					NDIS_ERROR_CODE_INVALID_VALUE_FROM_ADAPTER,
					0);

			return(NDIS_STATUS_FAILURE);
		}

        if (!EthCreateFilter(
                    MaximumMulticastAddresses,
                    ElnkChangeAddresses,
                    ElnkChangeClass,
                    ElnkCloseAction,
                    Adapter->CurrentAddress,
                    &Adapter->Lock,
                    &Adapter->FilterDB
                    )) {

            ElnkLogError(
                    Adapter,
                    registerAdapter,
                    NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                    0
                    );
            if ELNKDEBUG
				DPrint1("ElnkRegisterAdapter - unsuccessful filter create.\n");
            ElnkDeleteAdapterMemory(Adapter);

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            NdisFreeSpinLock(&Adapter->Lock);
            ELNK_FREE_PHYS(Adapter);
            return NDIS_STATUS_FAILURE;
        }

        if (!ElnkInitialInit(
                            Adapter,
                            Adapter->InterruptVector
                            )) {

			EthDeleteFilter(Adapter->FilterDB);
            ElnkDeleteAdapterMemory(Adapter);

            NdisDeregisterAdapter(Adapter->NdisAdapterHandle);
            NdisFreeSpinLock(&Adapter->Lock);
            ELNK_FREE_PHYS(Adapter);
            return NDIS_STATUS_FAILURE;

        }

        //
        // Record it in the global adapter list.
        //

        NdisInterlockedInsertTailList(&ElnkAdapterList,
                                          &Adapter->AdapterList,
                                          &ElnkAdapterListLock
                                         );
        return NDIS_STATUS_SUCCESS;

    } else {

        if ELNKDEBUG DPrint1("ElnkRegisterAdapter - unsuccessful allocation of adapter block.\n");
        return NDIS_STATUS_FAILURE;

    }

}
#endif

#pragma NDIS_INIT_FUNCTION(ElnkAllocateAdapterMemory)

BOOLEAN
ElnkAllocateAdapterMemory(
    IN PELNK_ADAPTER Adapter
    )
/*++

Routine Description:

    This routine is responsible for the allocation of the datastructures
    for the Adapter structure.

Arguments:

    Adapter - the adapter structure to allocate for.

Return Value:

    Returns false if we cannot allocate memory.


--*/
{

    NDIS_STATUS Status;

    //
    // add 1 for multicast block
    //

    Status = ELNK_ALLOC_PHYS(
                        &Adapter->TransmitInfo,
                        sizeof(ELNK_TRANSMIT_INFO) *
                        (Adapter->NumberOfTransmitBuffers + 1)
                        );

    if (Status != NDIS_STATUS_SUCCESS) {
        ElnkLogError(
                Adapter,
                allocateAdapterMemory,
                NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                0
                );
        ElnkDeleteAdapterMemory(Adapter);
        return(FALSE);
    }

    Status = ELNK_ALLOC_PHYS(
                        &Adapter->ReceiveInfo,
                        sizeof(ELNK_RECEIVE_INFO) *
                        Adapter->NumberOfReceiveBuffers
                        );

    if (Status != NDIS_STATUS_SUCCESS) {
        ElnkLogError(
                Adapter,
                allocateAdapterMemory,
                NDIS_ERROR_CODE_OUT_OF_RESOURCES,
                1
                );
        ElnkDeleteAdapterMemory(Adapter);
        return(FALSE);
    }
    return(TRUE);
}


VOID
ElnkDeleteAdapterMemory(
    IN PELNK_ADAPTER Adapter
    )
/*++

Routine Description:

    This routine is responsible for the deallocation of the datastructures
    for the Adapter structure.

Arguments:

    Adapter - the adapter structure to deallocate for.

Return Value:

    None.

--*/
{
    if (Adapter->TransmitInfo != NULL) {
        ELNK_FREE_PHYS(Adapter->TransmitInfo);
    }

    if (Adapter->ReceiveInfo != NULL) {
         ELNK_FREE_PHYS(Adapter->ReceiveInfo);

    }
}

#pragma NDIS_INIT_FUNCTION(InitializeAdapterVariables)

VOID
InitializeAdapterVariables(
    IN PELNK_ADAPTER Adapter
    )
/*++

Routine Description:

    This routine is initializes the adapter variables.

Arguments:

    Adapter - the adapter structure to initialize

Return Value:

    None.

--*/
{
    //
    // No long necessary -- we zero structure out and this routine is
    // only called at initialinit time.
    //
    // Adapter->OpenCount = 0;
    //

    Adapter->References = 1;
    Adapter->ResetInProgress = FALSE;
    Adapter->ResettingOpen = NULL;
    Adapter->OldParameterField = DEFAULT_PARM5;
    Adapter->FirstOpen = TRUE;
    Adapter->FirstReset = TRUE;
    Adapter->DoingProcessing = FALSE;
    Adapter->ProcessingRequests = FALSE;
    Adapter->StatisticsField = 0x12345678;

    //
    // Packet counts
    //
    // No long necessary -- we zero structure out and this routine is
    // only called at initialinit time.
    //
    // Adapter->GoodTransmits = 0;
    // Adapter->GoodReceives = 0;

    //
    // Count of transmit errors
    //
    // No long necessary -- we zero structure out and this routine is
    // only called at initialinit time.
    //
    // Adapter->RetryFailure = 0;
    // Adapter->LostCarrier = 0;
    // Adapter->UnderFlow = 0;
    // Adapter->NoClearToSend = 0;
    // Adapter->Deferred = 0;
    // Adapter->OneRetry = 0;
    // Adapter->MoreThanOneRetry = 0;

    //
    // Count of receive errors
    //
    // No long necessary -- we zero structure out and this routine is
    // only called at initialinit time.
    //
    // Adapter->FrameTooShort = 0;
    // Adapter->NoEofDetected = 0;
}


VOID
ResetAdapterVariables(
    IN PELNK_ADAPTER Adapter
    )
/*++

Routine Description:

    This routine resets the adapter variables to their post reset value

Arguments:

    Adapter - the adapter structure whose elements are to be reset

Return Value:

    None.

--*/
{
    Adapter->TransmitsQueued = 0;
    Adapter->FirstRequest = NULL;
    Adapter->LastRequest = NULL;
    Adapter->FirstPendingCommand = ELNK_EMPTY;
    Adapter->LastPendingCommand = ELNK_EMPTY;
    Adapter->NextCommandBlock = 0;

    Adapter->NumberOfAvailableCommandBlocks =
        Adapter->NumberOfTransmitBuffers;

    Adapter->FirstLoopBack = NULL;
    Adapter->LastLoopBack = NULL;
    Adapter->FirstFinishTransmit = NULL;
    Adapter->LastFinishTransmit = NULL;
    Adapter->StageOpen = TRUE;
    Adapter->AlreadyProcessingStage = FALSE;
    Adapter->FirstStagePacket = NULL;
    Adapter->LastStagePacket = NULL;
}


STATIC
NDIS_STATUS
ElnkOpenAdapter(
    OUT PNDIS_STATUS OpenErrorStatus,
    OUT NDIS_HANDLE *MacBindingHandle,
    OUT PUINT SelectedMediumIndex,
    IN PNDIS_MEDIUM MediumArray,
    IN UINT MediumArraySize,
    IN NDIS_HANDLE NdisBindingContext,
    IN NDIS_HANDLE MacAdapterContext,
    IN UINT OpenOptions,
    IN PSTRING AddressingInformation OPTIONAL
    )

/*++

Routine Description:

    This routine is used to create an open instance of an adapter, in effect
    creating a binding between an upper-level module and the MAC module over
    the adapter.

Arguments:

    MacBindingHandle - A pointer to a location in which the MAC stores
    a context value that it uses to represent this binding.

    SelectedMediumIndex - Index in MediumArray of the medium type that
        the MAC wishes to be viewed as.

    MediumArray - Array of medium types which a protocol supports.

    MediumArraySize - Number of elements in MediumArray.

    NdisBindingContext - A value to be recorded by the MAC and passed as
    context whenever an indication is delivered by the MAC for this binding.

    MacAdapterContext - The value associated with the adapter that is being
    opened when the MAC registered the adapter with NdisRegisterAdapter.

    OpenOptions - bit mask.

    AddressingInformation - An optional pointer to a variable length string
    containing hardware-specific information that can be used to program the
    device.  (This is not used by this MAC.)

Return Value:

    The function value is the status of the operation.  If the MAC does not
    complete this request synchronously, the value would be
    NDIS_STATUS_PENDING.


--*/

{


    //
    // The ELNK_ADAPTER that this open binding should belong too.
    //
    PELNK_ADAPTER Adapter;

    //
    // for index
    //

    UINT i;

    //
    // return status
    //

    NDIS_STATUS Status;

    //
    // Pointer to the space allocated for the binding.
    //
    PELNK_OPEN NewOpen;

    //
    // Pointer to the reserved portion of ndisrequest
    //
    PELNK_REQUEST_RESERVED Reserved;

    //
    // Holds the status that should be returned to the caller.
    //
    NDIS_STATUS StatusToReturn = NDIS_STATUS_SUCCESS;
    OpenErrorStatus; AddressingInformation; OpenOptions;

    //
    // If we are being removed, don't allow new opens.
    //

    Adapter = PELNK_ADAPTER_FROM_CONTEXT_HANDLE(MacAdapterContext);

    NdisInterlockedAddUlong(&Adapter->References, 1, &Adapter->Lock);

    //
    // Search for the medium type (802.3)
    //

    for (i = 0; i < MediumArraySize; i++){
        if (MediumArray[i] == NdisMedium802_3){
            break;
        }
    }

    if (i == MediumArraySize){
        NdisAcquireSpinLock(&Adapter->Lock);
        StatusToReturn = NDIS_STATUS_UNSUPPORTED_MEDIA;
        goto OpenDoDeferred;
    }

    *SelectedMediumIndex = i;


    //
    // Allocate the space for the open binding.  Fill in the fields.
    //

    Status = ELNK_ALLOC_PHYS(&NewOpen, sizeof(ELNK_OPEN));

    if (Status != NDIS_STATUS_SUCCESS) {

        NdisAcquireSpinLock(&Adapter->Lock);

        StatusToReturn = NDIS_STATUS_RESOURCES;
        goto OpenDoDeferred;

    }

    *MacBindingHandle = BINDING_HANDLE_FROM_PELNK_OPEN(NewOpen);
    InitializeListHead(&NewOpen->OpenList);
    NewOpen->NdisBindingContext = NdisBindingContext;
    NewOpen->References = 1;
    NewOpen->BindingShuttingDown = FALSE;
    NewOpen->OwningAdapter = Adapter;
    NewOpen->ProtOptionFlags = 0;

    NewOpen->OpenCloseRequest.RequestType = NdisRequestOpen;
    Reserved = PELNK_RESERVED_FROM_REQUEST(&NewOpen->OpenCloseRequest);
    Reserved->OpenBlock = NewOpen;
    Reserved->Next = (PNDIS_REQUEST)NULL;

    NdisAcquireSpinLock(&Adapter->Lock);

    ElnkQueueRequest(Adapter, &NewOpen->OpenCloseRequest);

    StatusToReturn = NDIS_STATUS_PENDING;

    //
    // Fire off the timer for the next state.
    //

    if (Adapter->FirstOpen) {

        Adapter->FirstOpen = FALSE;

        NdisSetTimer(
             &Adapter->DeadmanTimer,
             2000
             );
    }

OpenDoDeferred:
    ELNK_DO_DEFERRED(Adapter);
    return StatusToReturn;
}

STATIC
NDIS_STATUS
ElnkCloseAdapter(
    IN NDIS_HANDLE MacBindingHandle
    )

/*++

Routine Description:

    This routine causes the MAC to close an open handle (binding).

Arguments:

    MacBindingHandle - The context value returned by the MAC when the
    adapter was opened.  In reality it is a PELNK_OPEN.

Return Value:

    The function value is the status of the operation.


--*/

{
    //
    // Elnk Adapter this open belongs to
    //
    PELNK_ADAPTER Adapter;

    //
    // Pointer to the space allocated for the binding
    //
    PELNK_OPEN Open;

    //
    // Status to return to the caller
    //
    NDIS_STATUS StatusToReturn = NDIS_STATUS_SUCCESS;

    Adapter = PELNK_ADAPTER_FROM_BINDING_HANDLE(MacBindingHandle);

    //
    // Hold the lock while we update the reference counts for the
    // adapter and the open.
    //

    Open = PELNK_OPEN_FROM_BINDING_HANDLE(MacBindingHandle);

    NdisAcquireSpinLock(&Adapter->Lock);
	Adapter->References++;

    //
    // Don't do anything if it's closing
    //

    if (!Open->BindingShuttingDown) {

        PELNK_REQUEST_RESERVED Reserved = PELNK_RESERVED_FROM_REQUEST(&Open->OpenCloseRequest);

        Open->OpenCloseRequest.RequestType = NdisRequestClose;
        Reserved->OpenBlock = Open;
        Reserved->Next = (PNDIS_REQUEST)NULL;

		Open->References++;

        ElnkQueueRequest(Adapter, &Open->OpenCloseRequest);

        //
        // Remove the creation reference.
        //
		Open->References--;

        StatusToReturn = NDIS_STATUS_PENDING;

    } else {

        StatusToReturn = NDIS_STATUS_CLOSING;

    }

    //
    // This macro assumes it is called with the lock held,
    // and releases it.
    //

    ELNK_DO_DEFERRED(Adapter);
    return StatusToReturn;

}


extern
VOID
ElnkUnloadMac(
    IN NDIS_HANDLE MacMacContext
    )

/*++

Routine Description:

    ElnkUnload is called when the MAC is to unload itself.

Arguments:


Return Value:

    None.

--*/

{
    NDIS_STATUS InitStatus;

    //
    // If the list is empty, or we just emptied it,
    // then unload ourselves.
    //

    ASSERT(IsListEmpty(&ElnkAdapterList));

    NdisFreeSpinLock(&ElnkAdapterListLock);

    NdisDeregisterMac(
            &InitStatus,
            ElnkMacHandle
            );



    NdisTerminateWrapper(
            ElnkNdisWrapperHandle,
            NULL
            );

    return;
}


#pragma NDIS_INIT_FUNCTION(ElnkAddAdapter)

#if ELNKMC

extern
NDIS_STATUS
ElnkAddAdapter(
    IN NDIS_HANDLE MacMacContext,
    IN NDIS_HANDLE ConfigurationHandle,
    IN PNDIS_STRING AdapterName
    )

/*++

Routine Description:

    ElnkAddAdapter adds an adapter to the list supported
    by this MAC.

Arguments:


Return Value:

    NDIS_STATUS_SUCCESS
    NDIS_STATUS_PENDING

--*/

{
    NDIS_HANDLE ConfigHandle;
    NDIS_STATUS Status;
    NDIS_STRING NetAddrStr = NETWORK_ADDRESS;
    UINT ChannelNumber = 0;
    UINT InterruptLevel;
    USHORT IoBase;
    ULONG RamBase;
    NDIS_PHYSICAL_ADDRESS PhysicalAddress;
    NDIS_MCA_POS_DATA McaData;
    UCHAR NetworkAddress[ETH_LENGTH_OF_ADDRESS];
    PUCHAR CurrentAddress = NULL;
    ULONG Length;
    PVOID NetAddress;

    BOOLEAN ConfigError = FALSE;
    NDIS_STATUS ConfigErrorCode;

    NdisOpenConfiguration(
                    &Status,
                    &ConfigHandle,
                    ConfigurationHandle
                    );

    if (Status != NDIS_STATUS_SUCCESS) {
        return NDIS_STATUS_FAILURE;
    }

    NdisReadMcaPosInformation(
                    &Status,
                    ConfigurationHandle,
                    &ChannelNumber,
                    &McaData
                    );

    if (Status != NDIS_STATUS_SUCCESS) {

        ConfigError = TRUE;
        ConfigErrorCode = NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION;
        goto RegisterAdapter;

    }

    //
    // Interpret POS data
    //

    switch ((McaData.PosData1 & REG1_IO_BASE_MASK)>>1) {
        case 0x00:
            IoBase = 0x0300;
            break;

        case 0x01:
            IoBase = 0x1300;
            break;

        case 0x02:
            IoBase = 0x2300;
            break;

        case 0x03:
            IoBase = 0x3300;
            break;
    }

    switch ((McaData.PosData1 & REG1_RAM_BASE_MASK)>>3) {
        case 0x00:
            RamBase = 0x0C0000;
            break;

        case 0x01:
            RamBase = 0x0C8000;
            break;

        case 0x02:
            RamBase = 0x0D0000;
            break;

        case 0x03:
            RamBase = 0x0D8000;
            break;
    }

    switch ((McaData.PosData1 & REG1_INTERRUPT_LEVEL_MASK)>>6) {
        case 0x00:
            InterruptLevel = 12;
            break;

        case 0x01:
            InterruptLevel = 7;
            break;

        case 0x02:
            InterruptLevel = 3;
            break;

        case 0x03:
            InterruptLevel = 9;
            break;
    }

    //
    // Read net address
    //

    NdisReadNetworkAddress(
                    &Status,
                    &NetAddress,
                    &Length,
                    ConfigHandle
                    );

    if ((Length == ETH_LENGTH_OF_ADDRESS) && (Status == NDIS_STATUS_SUCCESS)) {

        ETH_COPY_NETWORK_ADDRESS(
                NetworkAddress,
                NetAddress
                );

        CurrentAddress = NetworkAddress;
    }

RegisterAdapter:

    NdisSetPhysicalAddressHigh(PhysicalAddress, 0);
    NdisSetPhysicalAddressLow(PhysicalAddress, RamBase);

    Status = ElnkmcRegisterAdapter(
                            ElnkMacHandle,
                            ConfigurationHandle,
                            AdapterName,
                            InterruptLevel,
                            PhysicalAddress,
                            IoBase,
                            CurrentAddress,
                            ELNK_MAXIMUM_MULTICAST,
                            32,
                            ConfigError,
                            ConfigErrorCode
                            );

    NdisCloseConfiguration(ConfigHandle);
    return Status;
}

#else
extern
NDIS_STATUS
ElnkAddAdapter(
    IN NDIS_HANDLE MacMacContext,
    IN NDIS_HANDLE ConfigurationHandle,
    IN PNDIS_STRING AdapterName
    )

/*++

Routine Description:

    ElnkAddAdapter adds an adapter to the list supported
    by this MAC.

Arguments:


Return Value:

    NDIS_STATUS_SUCCESS
    NDIS_STATUS_PENDING

--*/

{
    NDIS_HANDLE ConfigHandle;
    NDIS_STATUS Status;
    PNDIS_CONFIGURATION_PARAMETER ReturnedValue;

    NDIS_STRING NetAddrStr = NETWORK_ADDRESS;
    NDIS_STRING TransStr = NDIS_STRING_CONST("Transceiver");
    NDIS_STRING InterruptStr = NDIS_STRING_CONST("InterruptNumber");
    NDIS_STRING IoPortStr = IOBASE;
    NDIS_STRING RamBaseStr = NDIS_STRING_CONST("MemoryMappedBaseAddress");
    NDIS_STRING ZWStr = NDIS_STRING_CONST("ZeroWaitState");
    NDIS_STRING RamSizeStr = NDIS_STRING_CONST("MemoryMappedSize");

    USHORT IoBase;
    UINT InterruptVector;
    BOOLEAN IsExternal;
    BOOLEAN ZwsEnabled;
    ULONG WindowBase;
    NDIS_PHYSICAL_ADDRESS PhysicalAddress;
    UINT WindowSize;
    UCHAR NetworkAddress[ETH_LENGTH_OF_ADDRESS];
    PUCHAR CurrentAddress = NULL;
    ULONG Length;
    PVOID NetAddress;


    BOOLEAN ConfigError = FALSE;
    NDIS_STATUS ConfigErrorCode;

    NdisOpenConfiguration(
                    &Status,
                    &ConfigHandle,
                    ConfigurationHandle
                    );

    if (Status != NDIS_STATUS_SUCCESS) {
        return NDIS_STATUS_FAILURE;
    }

    //
    // Read net address
    //

    NdisReadNetworkAddress(
                    &Status,
                    &NetAddress,
                    &Length,
                    ConfigHandle
                    );

    if ((Length == ETH_LENGTH_OF_ADDRESS) && (Status == NDIS_STATUS_SUCCESS)) {

        ETH_COPY_NETWORK_ADDRESS(
                NetworkAddress,
                NetAddress
                );

        CurrentAddress = NetworkAddress;
    }

#if NDIS_NT
    //
    // Let's get the interrupt number
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &InterruptStr,
                    NdisParameterInteger
                    );

    if (Status == NDIS_STATUS_SUCCESS) {
        InterruptVector = ReturnedValue->ParameterData.IntegerData;
    } else {
        InterruptVector = ELNK16_DEFAULT_INTERRUPT_VECTOR;
    }

    {
        UCHAR i;
        static UINT Interrupts[] = {3,5,7,9,10,11,12,15};

        for (i=0; i < 8; i++) {

            if (Interrupts[i] == InterruptVector) {

                break;

            }

        }

        if (i == 8) {

            ConfigError = TRUE;
            ConfigErrorCode = NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION;
            goto RegisterAdapter;

        }

    }
#endif // NDIS_NT

    //
    // Get the Io Port
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &IoPortStr,
                    NdisParameterHexInteger
                    );

    if (Status == NDIS_STATUS_SUCCESS) {
        IoBase = (USHORT) ReturnedValue->ParameterData.IntegerData;
    } else {
        IoBase = ELNK16_DEFAULT_IOBASE;
    }


    {
        UINT i;

        for (i=0x200; i < 0x3f0; i += 0x10) {

            if ((i == 0x270) ||
//                (i == 0x290) ||
                (i == 0x2f0) ||
                (i == 0x370) ||
                (i == 0x3b0) ||
                (i == 0x3c0) ||
                (i == 0x3d0)) {

                continue;
            }

            if (i == IoBase) {

                break;

            }

        }

        if (i != IoBase) {

            ConfigError = TRUE;
            ConfigErrorCode = NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION;
            goto RegisterAdapter;

        }

    }

#if NDIS_NT
    //
    // Get the RamBase
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &RamBaseStr,
                    NdisParameterHexInteger
                    );

    if (Status == NDIS_STATUS_SUCCESS) {
        WindowBase = ReturnedValue->ParameterData.IntegerData;
    } else {
        WindowBase = ELNK16_DEFAULT_WINBASE;
    }

    if ((WindowBase < 0xC0000) ||
        (WindowBase > 0xDFFFF) ||
        ((WindowBase & 0x3FFF) != 0x0)) {

        ConfigError = TRUE;
        ConfigErrorCode = NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION;
        goto RegisterAdapter;

    }

    //
    // Let's get the size of the Window
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &RamSizeStr,
                    NdisParameterHexInteger
                    );

    if (Status == NDIS_STATUS_SUCCESS) {
        WindowSize = ReturnedValue->ParameterData.IntegerData;
    } else {
        WindowSize = ELNK16_DEFAULT_WINDOW_SIZE;
    }

    //
    // Convert to local method
    //

    WindowSize = WindowSize >> 10;

    if ((WindowSize != 16) &&
        (WindowSize != 32) &&
        (WindowSize != 48) &&
        (WindowSize != 64)) {

        ConfigError = TRUE;
        ConfigErrorCode = NDIS_ERROR_CODE_UNSUPPORTED_CONFIGURATION;
        goto RegisterAdapter;

    }


    //
    // Are we using External Transceiver?
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &TransStr,
                    NdisParameterInteger
                    );


    if (Status == NDIS_STATUS_SUCCESS) {

        IsExternal = (ReturnedValue->ParameterData.IntegerData == 1)?TRUE:FALSE;

    } else {

        IsExternal = TRUE;

    }

    //
    // Do we want to enable Zero wait state
    //

    NdisReadConfiguration(
                    &Status,
                    &ReturnedValue,
                    ConfigHandle,
                    &ZWStr,
                    NdisParameterInteger
                    );


    if (Status == NDIS_STATUS_SUCCESS) {

        ZwsEnabled = (ReturnedValue->ParameterData.IntegerData == 1)?TRUE:FALSE;

    } else {

        ZwsEnabled = TRUE;

    }
#endif // NDIS_NT

#if NDIS_WIN
    // use defaults for now.  We will read these values from eeprom.
    InterruptVector = ELNK16_DEFAULT_INTERRUPT_VECTOR;
    WindowBase = ELNK16_DEFAULT_WINBASE;
    WindowSize = ELNK16_DEFAULT_WINDOW_SIZE;
    IsExternal = TRUE;
    ZwsEnabled = TRUE;
#endif // NDIS_WIN


RegisterAdapter:

    NdisSetPhysicalAddressHigh(PhysicalAddress, 0);
    NdisSetPhysicalAddressLow(PhysicalAddress, WindowBase);

    Status = Elnk16RegisterAdapter(
                 ElnkMacHandle,
                 ConfigurationHandle,
                 AdapterName,
                 InterruptVector,
                 PhysicalAddress,
                 WindowSize,
                 IoBase,
                 IsExternal,
                 ZwsEnabled,
                 CurrentAddress,
                 ELNK_MAXIMUM_MULTICAST,
                 32,
                 ConfigError,
                 ConfigErrorCode
                 );

    if (Status != NDIS_STATUS_SUCCESS) {
        if ELNKDEBUG DPrint1("Elnk16AddAdapter: Elnk16RegisterAdapter failed\n");
    }
    NdisCloseConfiguration(ConfigHandle);
    return Status;
}
#endif


extern
VOID
ElnkRemoveAdapter(
    IN NDIS_HANDLE MacAdapterContext
    )

/*++

Routine Description:

    ElnkRemoveAdapter removes an adapter previously registered
    with NdisRegisterAdapter.

Arguments:

    MacAdapterContext - The context value that the MAC passed
        to NdisRegisterAdapter; actually as pointer to a
        ELNK_ADAPTER.

Return Value:

    None.

--*/

{
    PELNK_ADAPTER Adapter;
    BOOLEAN Cancelled;

    Adapter = PELNK_ADAPTER_FROM_CONTEXT_HANDLE(MacAdapterContext);

    ASSERT(Adapter->OpenCount == 0);

    //
    // There are no opens left, so remove ourselves.
    //



    NdisCancelTimer(&Adapter->DeadmanTimer,&Cancelled);

    NdisRemoveInterrupt(&Adapter->Interrupt);

    EthDeleteFilter(Adapter->FilterDB);

    NdisDeregisterAdapter(Adapter->NdisAdapterHandle);

    NdisFreeSpinLock(&Adapter->Lock);

    NdisAcquireSpinLock(&ElnkAdapterListLock);

    RemoveEntryList(&Adapter->AdapterList);

    NdisReleaseSpinLock(&ElnkAdapterListLock);

    ELNK_FREE_PHYS(Adapter);

#if !ELNKMC
    //
    // Put the card in START state.  This leaves the
    // card in the same state as a hardware powerup.
    // This guarantees that the card is in a known workable
    // state if an additional AddAdapter is issued before the
    // power has been cycled.  Otherwise, the AddAdapter fails.
    //

    // Go to Run state
    NdisRawWritePortUchar(ELNK16_ID_PORT,0x00);
    Elnk16GenerateIdPattern(Adapter);
    NdisRawWritePortUchar(ELNK16_ID_PORT,0x00);

    // Go to Reset state
    Elnk16GenerateIdPattern(Adapter);

    // Go to IoLoad state
    Elnk16GenerateIdPattern(Adapter);

    // Go to Config state
    NdisRawWritePortUchar(ELNK16_ID_PORT,(UCHAR)0xFF);

    // Reset the card, which leaves the card in Start state
    NdisRawWritePortUchar(ELNK16_ICR,ICR_RESET);
#endif

    return;
}