summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/dc21x4/miiphy.c
blob: e06d021951c0678d5aaac16a8b319debe8781f0c (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
/*+
 * file:        miiphy.c
 *
 * Copyright (C) 1992-1995 by
 * Digital Equipment Corporation, Maynard, Massachusetts.
 * All rights reserved.
 *
 * This software is furnished under a license and may be used and copied
 * only  in  accordance  of  the  terms  of  such  license  and with the
 * inclusion of the above copyright notice. This software or  any  other
 * copies thereof may not be provided or otherwise made available to any
 * other person.  No title to and  ownership of the  software is  hereby
 * transferred.
 *
 * The information in this software is  subject to change without notice
 * and  should  not  be  construed  as a commitment by digital equipment
 * corporation.
 *
 * Digital assumes no responsibility for the use  or  reliability of its
 * software on equipment which is not supplied by digital.
 *
 *
 * Abstract:    This file contains the code to support the MII protocol
 *              to access the PHY chip.
 *              This file is part of the DEC's DC21X4 Ethernet Controller
 *              driver
 *
 * Author:      Claudio Hazan
 *
 * Revision History:
 *
 *  20-Nov-95   ch     Initial version
 *  20-Dec-95   phk    Cleanup
 *
-*/

#include <precomp.h>


/*+
 *
 *   MiiPhyInit
 *
 *   Description : Initializes Mii PHY entry variables.
 *                 Searches for PHY in given address, initializes it if found.
 *
 *   Input parameters:
 *
 *       PDC21X4_ADAPTER - Adapter       The Adapter's DS
 *       PhyInfoPtr  - PMII_PHY_INFO     pointer to struct with PHY info
 *
 *   Output parameters:
 *
 *       None.
-*/
extern
BOOLEAN
MiiPhyInit(
   PDC21X4_ADAPTER  Adapter,
   PMII_PHY_INFO PhyInfoPtr
   )
{

   USHORT i;

#if MII_DBG
  DbgPrint("MiiPhyInit\n");
#endif

  if ( !(FindMiiPhyDevice(Adapter, PhyInfoPtr)) ) {
      return FALSE;
  }

#if MII_DBG
  DbgPrint("MiiPhyDevice FOUND!\n");
#endif

  // Reset the PHY to return it to his default values
  PhyInfoPtr->PhyExtRoutines.PhyAdminControl(
          Adapter,
          PhyInfoPtr,
          MiiGenAdminReset
          );

  // Once the PHY is reset, read the values of its
  // whole registers

  if ( !(FindMiiPhyDevice(Adapter, PhyInfoPtr)) ) {
      return FALSE;
  }

  // get and save PHY capabilities
  PhyInfoPtr->PhyCapabilities =
      PhyInfoPtr->PhyRegs[PhyStatusReg] & MiiPhyCapabilitiesMask;

  switch (PhyInfoPtr->PhyId) {

     case BCM5000_0:

#if MII_DBG
        DbgPrint("Broadcom PHY...\n");
#endif
        // allow Autosense
        PhyInfoPtr->PhyCapabilities |= MiiPhyNwayCapable;
        break;
  }
#if MII_DBG
  DbgPrint("PhyCapabilities = %04x\n", PhyInfoPtr->PhyCapabilities);
#endif

  // get and save PHY's NWAY Advertisement
  PhyInfoPtr->PhyIntRoutines.PhyNwayGetLocalAbility(
        Adapter,
        PhyInfoPtr,
        &(PhyInfoPtr->PhyMediaAdvertisement)
        );
#if MII_DBG
  DbgPrint("PhyMediaAdvertisement = %04x\n", PhyInfoPtr->PhyMediaAdvertisement);
#endif

  // put the PHY in operational mode
  PhyInfoPtr->PhyExtRoutines.PhyAdminControl(
        Adapter,
        PhyInfoPtr,
        MiiGenAdminOperational
        );

  /* mark that PHY entry is valid */
  PhyInfoPtr->StructValid = TRUE;

#if MII_DBG
  DbgPrint("MiiPhyInit Done\n");
#endif
  return TRUE;

}


/*+
 *
 *  MiiPhyGetCapabilities
 *
 *  Description : Returns the PHY capabilities.

 *  Input parameters:
 *
 *      PhyInfoPtr  - PMII_PHY_INFO      pointer to struct with PHY info
 *
 *  Output parameters:
 *
 *      Capabilities - CAPABILITY
 *
 *
-*/
extern
void
MiiPhyGetCapabilities(
   PMII_PHY_INFO PhyInfoPtr,
   CAPABILITY   *Capabilities
   )
{
#if MII_DBG
   DbgPrint("MiiPhyGetCapabilities\n");
#endif
   *Capabilities = PhyInfoPtr->PhyCapabilities;
   return;
}




/*+
 *
 *   MiiPhySetConnectionType
 *
 *   Description:
 *
 *   if (Connection == NWAY) then
 *     if (Advertisement != 0 )
 *           Change LocalAdvertisement
 *       and Set RestartNway bit
 *     set NWAy bit On in CTRL register
 *   else
 *     Translate Media to appropriate control bits
 *     write CTRL reg
 *     and return success
 *
 *   Input parameters:
 *
 *       PhyInfoPtr   - PMII_PHY_INFO    pointer to struct with PHY info
 *       Connection    - USHORT
 *       Advertisement - USHORT
 *
 *   Output parameters:
 *
 *       None.
 *
 *   On return - FALSE if PHY does not support Connection, TRUE otherwise.
 *
-*/
extern
BOOLEAN
MiiPhySetConnectionType(
      PDC21X4_ADAPTER Adapter,
      PMII_PHY_INFO   PhyInfoPtr,
      USHORT   Connection,
      USHORT   Advertisement
      )
{
#if MII_DBG
   DbgPrint("MiiPhySetConnectionType\n");
#endif
   // Check if the PHY supports this connection ?
   if(!CheckConnectionSupport(
          PhyInfoPtr,
          Connection
          )){
#if MII_DBG
        DbgPrint("***The Connection %04x is not supported by the Phy\n", Connection);
#endif
        return FALSE;
   }

   // Convert Connection type to Control_word
   ConvertConnectionToControl(
          PhyInfoPtr,
          &Connection
          );

   // Clear Previous Connection bits from Control_word
   // (Leave only Isolate and Power-down bits)
   PhyInfoPtr->PhyRegs[PhyControlReg] &=
           (MiiPhyCtrlIsolate | MiiPhyCtrlPowerDown);

   // Create the new Control_word
   PhyInfoPtr->PhyRegs[PhyControlReg] |= Connection;

   // If operation mode is NWAY - set its parameters
   if (Connection & MiiPhyCtrlEnableNway) {
      PhyInfoPtr->PhyIntRoutines.PhyNwaySetLocalAbility(
                 Adapter,
                 PhyInfoPtr,
                 Advertisement
                 );
   }

   // write the new control word
#if MII_DBG
   DbgPrint("New Control_word= %04x\n", PhyInfoPtr->PhyRegs[PhyControlReg]);
#endif
   PhyInfoPtr ->PhyIntRoutines.PhyWriteRegister(
                Adapter,
                PhyInfoPtr ,
                PhyControlReg,
                PhyInfoPtr->PhyRegs[PhyControlReg]
                );

   // Don't save RestartNway bit !
   PhyInfoPtr ->PhyRegs[PhyControlReg] &= ~MiiPhyCtrlRestartNway;

   switch (PhyInfoPtr ->PhyId) {

      case BCM5000_0:

         // Need to be reset between 10Base to 100Base transitions
#if MII_DBG
         DbgPrint("Broadcom - 10B to 100B transition\n");
#endif
         HandleBroadcomMediaChangeFrom10To100(
            Adapter,
            PhyInfoPtr
            );
         break;
   }

   return TRUE;
}

/*+
 *
 *  MiiPhyGetConnectionType
 *
 *  Description:
 *
 *      Returns selected connection of the PHY.
 *      If PHY connection is not yet resolved and wait is required,
 *      waits for connection resolution and returns it.
 *      If not - returns error status.
 *
 *  Input parameters:
 *
 *      PhyInfoPtr      - PMII_PHY_INFO     pointer to struct with PHY info
 *
 *  Output parameters:
 *
 *      ConnectionStatus - Status
 *
 *  On Return
 *       Upon error - FALSE
 *       ConnectionStatus - error status
 *
 *       Upon success - TRUE
 *       ConnectionStatus - selected connection.
 *
 *Remarks:
 *
 * We use the NWAY capable bit in the PHY capabilities field to
 * overcome Broadcom's AutoSense issue.
 *
-*/
extern
BOOLEAN
MiiPhyGetConnectionType(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO   PhyInfoPtr,
   PUSHORT  ConnectionStatus
   )
{

   CAPABILITY  LocalAbility;
   CAPABILITY  PartnerAbility;
   CAPABILITY  Ability;
   USHORT      Register;

#if MII_DBG
   DbgPrint("MiiPhyGetConnectionType\n");
#endif
   switch (PhyInfoPtr->PhyId) {

      case BCM5000_0:

         if (!GetBroadcomPhyConnectionType(
                 Adapter,
                 PhyInfoPtr,
                 ConnectionStatus
                 )
            ) {

#if MII_DBG
              DbgPrint("***Connection not supported by Broadcom's Phy\n");
#endif
              *ConnectionStatus = MAC_CONN_UNKNOWN;
              return FALSE;
         }
         else {
            HandleBroadcomMediaChangeFrom10To100(
                 Adapter,
                 PhyInfoPtr
                 );
            return TRUE;
         }
         break;

      default:

         if (PhyInfoPtr->PhyRegs[PhyControlReg] & MiiPhyCtrlEnableNway) {

            // NWAY selected:
            // get partner and local abilities,
            // use them to retrieve the selected connection type
#if MII_DBG
            DbgPrint("Not Broadcom PHY: enable NWAY\n");
#endif
            PhyInfoPtr->PhyIntRoutines.PhyNwayGetLocalAbility(
                Adapter,
                PhyInfoPtr,
                &LocalAbility
                );

            PhyInfoPtr->PhyIntRoutines.PhyNwayGetPartnerAbility(
                Adapter,
                PhyInfoPtr,
                &PartnerAbility
                );

            Ability = LocalAbility & PartnerAbility;
#if MII_DBG
            DbgPrint("LocalAbility   : %04x\n",LocalAbility);
            DbgPrint("PartnerAbility : %04x\n",PartnerAbility);
#endif

            if (!Ability){
                // No common mode:
#if MII_DBG
                DbgPrint("No Common Mode...\n");
#endif

                if (PhyInfoPtr->PhyId == DP83840_0) {

                    //National's Phy Speed Sensing workaround:
                    //read the Speed_bit in the PAR register to sense
                    //the connection speed

                    if (PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                            Adapter,
                            PhyInfoPtr ,
                            NatPhyParRegister,
                            &Register
                       )) {

                      Ability = (LocalAbility &
                           ((Register & PAR_SPEED_10) ? MiiPhy10BaseT : MiiPhy100BaseTx) >>6);
#if MII_DBG
                      DbgPrint("National: Ability   : %04x\n", Ability);
#endif
                    }
                }
            }
            return (Ability ?
               ConvertNwayToConnectionType(Ability, ConnectionStatus) : FALSE);
         }
         else {

            // Nway not supported or not selected,
            // connection has been selected via CommandReg

            if (PhyInfoPtr->PhyRegs[PhyControlReg] & MiiPhyCtrlDuplexMode) {

                // Full Duplex Medium

                *ConnectionStatus =
                    (PhyInfoPtr->PhyRegs[PhyControlReg] & MiiPhyCtrlSpeed100) ?
                    MediumMii100BaseTxFullDuplex : MediumMii10BaseTFullDuplex;
#if MII_DBG
                DbgPrint("Full Duplex Medium; ConnectionStatus= %04x\n",*ConnectionStatus);
#endif
            }
            else if (PhyInfoPtr->PhyRegs[PhyControlReg] & MiiPhyCtrlSpeed100) {

                *ConnectionStatus =
                    (PhyInfoPtr->PhyRegs[PhyStatusReg] & MiiPhy100BaseTx) ?
                    MediumMii100BaseTx : MediumMii100BaseT4;
            }
            else{
                *ConnectionStatus = MediumMii10BaseT;
            }
#if MII_DBG
            DbgPrint("ConnectionStatus= %04x\n",*ConnectionStatus);
#endif
            return TRUE;
         }
   }

}

/*+
 *
 *  MiiPhyGetConnectionStatus
 *
 *  Description:
 *
 *      Returns the connection status of the PHY.
 *      Rewrites the command word read from the PHY in its entry
 *         in the PhysArray.
 *
 * Connection status has the following attributes:
 *      NwayAdminStatus
 *      MAUStatus
 *
 *On Entry:
 *      PhyInfoPtr
 *
 *On Return:
 *      ConnectionStatus :
 *        High byte - Nwaystatus
 *        Low byte  - LinkStatus
 *
 *On return
 *      TRUE  - on success
 *      FALSE - on fail, the return Connection Status is not valid
 *
-*/
extern
BOOLEAN
MiiPhyGetConnectionStatus (
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO  PhyInfoPtr ,
   PUSHORT        ConnectionStatus
   )
{

   //Init all Status bytes to UNKNOWN
   CAPABILITY NwayStatus=NWAY_UNKNOWN;
   CAPABILITY LinkStatus=MEDIA_STATE_UNKNOWN;

   CAPABILITY Ability;
   CAPABILITY LocalAbility;
   CAPABILITY PartnerAbility;

   ULONG Register;

#if MII_DBG
   DbgPrint("MiiPhyGetConnectionStatus\n");
#endif
   // Read and save Control Reg since the speed selection may be
   // forced via an hardware pin causing the software selection
   // to be ignored

   if (!PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
              Adapter,
              PhyInfoPtr ,
              PhyControlReg,
              &(PhyInfoPtr->PhyRegs[PhyControlReg])
              )) {

      LinkStatus = MEDIA_READ_REGISTER_FAILED;
      *ConnectionStatus = NwayStatus | LinkStatus;
      return FALSE;
   }

#if MII_DBG
   DbgPrint("PHY's ControlReg = %04x\n",PhyInfoPtr->PhyRegs[PhyControlReg]);
#endif

   // Read & save Status word
   if (!PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                                       Adapter,
                                       PhyInfoPtr,
                                       PhyStatusReg,
                                       &(PhyInfoPtr->PhyRegs[PhyStatusReg])
                                       )) {
      LinkStatus = MEDIA_READ_REGISTER_FAILED;
      *ConnectionStatus = NwayStatus | LinkStatus;
      return FALSE;
   }
#if MII_DBG
   DbgPrint("PHY's StatusReg = %04x\n",PhyInfoPtr->PhyRegs[PhyStatusReg]);
#endif
   if (PhyInfoPtr->PhyRegs[PhyStatusReg] == 0){
      LinkStatus = MEDIA_READ_REGISTER_FAILED;
      *ConnectionStatus = NwayStatus | LinkStatus;
      return FALSE;
   }

   // Set Nway status according to Nway complete & ability bits & enable

   switch (PhyInfoPtr->PhyId) {

      case BCM5000_0:

          // Broadcom

          if (PhyInfoPtr ->PhyRegs[PhyControlReg] & MiiPhyCtrlEnableNway) {

             NwayStatus = NWAY_COMPLETE;
          }
          else {

             NwayStatus = NWAY_DISABLED;
          }
          break;

      default:

          if (PhyInfoPtr ->PhyRegs[PhyStatusReg] & MiiPhyNwayCapable) {

             if (PhyInfoPtr ->PhyRegs[PhyControlReg] & MiiPhyCtrlEnableNway) {

                 if (PhyInfoPtr ->PhyRegs[PhyStatusReg] & MiiPhyNwayComplete) {
                     NwayStatus = NWAY_COMPLETE;
                 }
                 else {
                     // assume configuration not done yet
                     NwayStatus = NWAY_CONFIGURING;
                     *ConnectionStatus = NwayStatus | LinkStatus;
                     return FALSE;
                 }
             }
             else {
                 NwayStatus = NWAY_DISABLED;
             }
          }
          else {
             NwayStatus = NWAY_NOT_SUPPORTED;
          }
   }

   // Set link status according to link bit.
   // Since LinkStatus bit latches Link-Fail status
   // the link status is find as follows:
   //
   // If Status Reg indicate LinkPass then
   //   LinkStatus=LINK_PASS
   // else
   //   Read Status Register
   //   If Status Reg indicate LinkPass then
   //      LinkStatus=LINK_PASS_WITH_PF
   //   else
   //      LinkStatus=LINK_FAIL
   //    endif
   // endif


   // Check if the Link status indicates a
   // PHY's supported medium
   // Only if the Phy is NWAY's Capable or NWAY is enabled

   if (NwayStatus == NWAY_COMPLETE) {

      PhyInfoPtr->PhyIntRoutines.PhyNwayGetLocalAbility(
         Adapter,
         PhyInfoPtr,
         &LocalAbility
         );

      PhyInfoPtr->PhyIntRoutines.PhyNwayGetPartnerAbility(
         Adapter,
         PhyInfoPtr,
         &PartnerAbility
         );

      if (PhyInfoPtr->PhyId == DP83840_0) {

         //National's Phy Speed Sensing workaround:
         //read the Speed_bit in the PAR register to sense
         //the connection speed

         if (PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                   Adapter,
                   PhyInfoPtr ,
                   NatPhyParRegister,
                   &Register
                   )) {

            Ability = (LocalAbility &
                   ((Register & PAR_SPEED_10) ? MiiPhy10BaseT : MiiPhy100BaseTx ) >>6);
#if MII_DBG
            DbgPrint("National: Speed sense -> %s\n",
                  (Register & PAR_SPEED_10) ? "10Mbps" : "100Mbps" );
#endif
         }
      }
      else {
         Ability = LocalAbility & PartnerAbility;
      }

      if (!(Ability)) {
          LinkStatus = MEDIA_LINK_FAIL;
          *ConnectionStatus = NwayStatus | LinkStatus;
          return FALSE;
      }
   }

   if (!(PhyInfoPtr->PhyRegs[PhyStatusReg] & MiiPhyLinkStatus)) {

      // Link fail: Read again Status Reg
      if (!PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                     Adapter,
                     PhyInfoPtr,
                     PhyStatusReg,
                     &(PhyInfoPtr->PhyRegs[PhyStatusReg])
                     )) {
         return FALSE;
      }

      if (!(PhyInfoPtr->PhyRegs[PhyStatusReg] & MiiPhyLinkStatus)) {

         // Link bit is still in Fail state
         LinkStatus = MEDIA_LINK_FAIL;
      }
      else {
#if MII_DBG
         DbgPrint("LinkPass with Previous Failure\n");
#endif
         LinkStatus = MEDIA_LINK_PASS_WITH_PF;
      }
   }
   else {
       LinkStatus = MEDIA_LINK_PASS;
   }

   *ConnectionStatus = NwayStatus | LinkStatus;
   return (LinkStatus != MEDIA_LINK_FAIL);

}

/*+
 *
 *  MiiPhyAdminControl
 *
 * Description:
 *
 * Performs the Control command on the specified Phy.
 * Control command can be one of the following:
 *    Reset        - reset the PHY (returns it to defaults)
 *    PowerDown
 *    StandBy
 *    Operational
 *
 *  Input parameters:
 *
 *      PhyInfoPtr   - PMII_PHY_INFO       pointer to MII_PHY_INFO
 *      Control      - MII_STATUS
 *
 *      AdminControlConversionTable - used in this routine
 *
 *  Output parameters:
 *
 *      None.
 *
-*/
extern
void
MiiPhyAdminControl(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO   PhyInfoPtr,
   MII_STATUS      Control
   )
{
  MII_STATUS Status = MiiGenAdminReset;
  INT i = 0;

#if MII_DBG
  DbgPrint("MiiPhyAdminControl\n");
#endif

  switch (Control) {
   
    case MiiGenAdminForce10:
    case MiiGenAdminForce10Fd:

       PhyInfoPtr->PreviousControl = PhyInfoPtr->PhyRegs[PhyControlReg];
       PhyInfoPtr->PhyRegs[PhyControlReg] &= MiiPhyCtrlForce10;
       Adapter->Force10 = TRUE;
       break;

    case MiiGenAdminRelease10:

       PhyInfoPtr->PhyRegs[PhyControlReg] = PhyInfoPtr->PreviousControl;
       Adapter->Force10 = FALSE;
       break;

    default:
       // Clear previous Control bits
       PhyInfoPtr->PhyRegs[PhyControlReg] &= ~(MiiPhyCtrlReset |
                                        MiiPhyCtrlPowerDown |
                                        MiiPhyCtrlIsolate);
  }
 
  // Write Control register
#if MII_DBG
  DbgPrint("Write ControlReg = %04x\n",(PhyInfoPtr->PhyRegs[PhyControlReg]|
                                       AdminControlConversionTable[Control]));
#endif
  PhyInfoPtr->PhyIntRoutines.PhyWriteRegister(
         Adapter,
         PhyInfoPtr,
         PhyControlReg,
         (PhyInfoPtr->PhyRegs[PhyControlReg] | AdminControlConversionTable[Control])
         );

  if (Control == MiiGenAdminReset) {
      // Delay until reset done and chip stabilizes
#if MII_DBG
   DbgPrint("Control = Reset; Delay until done and chip stabilizes\n");
#endif
      while ( (i++) < RESET_DELAY ) {
          PhyInfoPtr->PhyExtRoutines.PhyAdminStatus(
                                          Adapter,
                                          PhyInfoPtr,
                                          &Status
                                          );
          if ( Status != MiiGenAdminReset ) {
              break;
          }

      }
#if MII_DBG
      DbgPrint("Control = %x after Delay \n", Status);
#endif
  }

  return;

}


/*+
 *
 *  MiiPhyAdminStatus
 *
 *  Description:
 *
 *    Returns PHY admin status, which can be one of the following:
 *    Reset        - reset process is in progress (not completed yet)
 *    PowerDown   - Chip is in Power Down mode
 *    StandBy      - Chip listening but not accessing mii data lines
 *    Operational - Chip is fully active
 *
 *  Input parameters:
 *
 *      PhyInfoPtr    - PMII_PHY_INFO         pointer to MII_PHY_INFO
 *
 *  Output parameters:
 *
 *      Status        - MII_STATUS
 *
 *
 *        Note:   Interrupts are disabled.
 *
-*/
extern
void
MiiPhyAdminStatus(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO  PhyInfoPtr,
   PMII_STATUS    Status
   )
{

  USHORT  RegVal = 0;
  SHORT i = 3;

#if MII_DBG
  DbgPrint("MiiPhyAdminStatus\n");
#endif
  // Reads 3 times to garanty that 0 is a real value
  while (i--) {
      PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                                      Adapter,
                                      PhyInfoPtr,
                                      PhyControlReg,
                                      &RegVal
                                      );
      if (RegVal) {
            break;
      }
  }

  switch (RegVal) {

      case MiiPhyCtrlReset:

        *Status = MiiGenAdminReset;
        break;

      case MiiPhyCtrlPowerDown:

        *Status = MiiGenAdminPowerDown;
        break;

      case MiiPhyCtrlIsolate:

        *Status = MiiGenAdminStandBy;
        break;

      default:

        *Status = MiiGenAdminOperational;
  }
#if _DBG
  DbgPrint("AdminStatus = %x\n", Status);
#endif

  return;
}



//***************************************************************************
//*                      Mii PHY Internal Routines                          *
//***************************************************************************
/*+
 *
 * MiiPhyReadRegister
 *
 * Description:
 *
 *       Reads contents of register RegNum into *Register.
 *
 * Input parameters:
 *
 *       PDC21X4_ADAPTER - Adapter          The Adapter DS.
 *       PhyInfoPtr -     PMII_PHY_INFO     pointer to MII_PHY_INFO
 *       RegNum      -     USHORT           # of register to be read
 *
 * Output parameters:
 *
 *       *Register   - USHORT             contents of RegNum
 *
 * On return - TRUE if reading completed successfully, FALSE otherwise.
 *
 *
 *
 *  +-----------------------------------------------------------------------+
 *  |       Management frame fields                                         |
 *  +------+-------+----+----+-------+-------+----+------------------+------+
 *  |      |  PRE  | ST | OP | PHYAD | REGAD | TA |      DATA        | IDLE |
 *  +------+-------+----+----+-------+-------+----+------------------+------+
 *  |Read  | 1...1 | 01 | 10 | AAAAA | RRRRR | Z0 | DDDDDDDDDDDDDDDD |   Z  |
 *  +------+-------+----+----+-------+-------+----+------------------+------+
 *
 *         Note: Interrupts are disabled.
 *
-*/
extern
BOOLEAN
MiiPhyReadRegister(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO   PhyInfoPtr,
   USHORT           RegNum,
   PUSHORT          RegDat
   )
{
  ULONG CommandWord;
  ULONG Tmp = 0;
  USHORT Data = 0;
  INT i;
  INT SizeOfUshort = ((sizeof(USHORT))*8);
  BOOLEAN Succeed=TRUE;

#if _DBG
  DbgPrint("MiiPhyReadRegister\n");
#endif
  // Write Preamble
  WriteMii(Adapter, PRE, 2*SizeOfUshort);

  // Prepare command word
  CommandWord = PhyInfoPtr->PhyAddress << PHY_ADDR_ALIGN;
  CommandWord |= (RegNum << REG_ADDR_ALIGN);
  CommandWord |= MII_READ_FRAME;
#if _DBG
   DbgPrint("CommandWord=%08x\n", CommandWord);
#endif
  WriteMii(Adapter, CommandWord, SizeOfUshort-2);

  MiiOutThreeState(Adapter);

  // Check that the PHY chip generated a zero bit the 2nd clock
  DC21X4_READ_PORT(
        DC21X4_IDPROM,
        &Tmp
        );

  if (Tmp & MII_READ_DATA_MASK)  {
#if _DBG
     DbgPrint("***No Zero bit generated after 3 states\n");
#endif
     Succeed = FALSE;
  }

  // read data WORD
  (*RegDat) = 0;
  for (i=0; i<SizeOfUshort; i++) {
      DC21X4_WRITE_PORT(
               DC21X4_IDPROM,
               MII_READ
               );
      DELAY(MII_DELAY);
      DC21X4_WRITE_PORT(
               DC21X4_IDPROM,
               (MII_READ | MII_CLK)
               );
      DELAY(MII_DELAY);
      DC21X4_READ_PORT(
               DC21X4_IDPROM,
               &Tmp
               );
      DELAY(MII_DELAY);
      Data = (USHORT) ((Tmp >> MII_MDI_BIT_POSITION) & 0x0001);
      (*RegDat) = ((*RegDat) << 1) | Data;
  }

#if _DBG
  DbgPrint("&RegData=%08x Reg[%d]=%04x\n", RegDat, RegNum, *RegDat);
#endif
  MiiOutThreeState(Adapter);

  // clear reserved bits
  (*RegDat) &= ~PhyRegsReservedBitsMasks[RegNum];
#if _DBG
  DbgPrint("After Mask, Reg[%d]=%04x\n", RegNum, *RegDat);
#endif

  return Succeed;
}




/*+
 *
 *   MiiPhyWriteRegister
 *
 *   Description:
 *
 *       Writes contents of Register to register number RegNum.
 *
 *   Input parameters:
 *
 *       PhyInfoPtr    - PMII_PHY_INFO         pointer to MII_PHY_INFO
 *       RegNum         - USHORT
 *       Register       - USHORT
 *
 *   Output parameters:
 *
 *       None.
 *
 *
 * +-----------------------------------------------------------------------+
 * |        Management frame fields                            |
 * +------+-------+----+----+-------+-------+----+------------------+------+
 * |      |  PRE  | ST | OP | PHYAD | REGAD | TA |      DATA        | IDLE |
 * +------+-------+----+----+-------+-------+----+------------------+------+
 * |Write | 1...1 | 01 | 01 | AAAAA | RRRRR | 10 | DDDDDDDDDDDDDDDD |   Z  |
 * +------+-------+----+----+-------+-------+----+------------------+------+
 *
 *    Note:   Interrupts are disabled.
 *
-*/
extern
void
MiiPhyWriteRegister(
    PDC21X4_ADAPTER Adapter,
    PMII_PHY_INFO  PhyInfoPtr,
    USHORT          RegNum,
    USHORT          Register
    )
{

  ULONG CommandWord;
  INT SizeOfUshort = ((sizeof(USHORT))*8);

#if _DBG
  DbgPrint("MiiPhyWriteRegister\n");
#endif
  // Clear reserved bits
  Register &= ~PhyRegsReservedBitsMasks[RegNum];

  WriteMii(Adapter, PRE, 2*SizeOfUshort);

  // Prepare command word
  CommandWord = (PhyInfoPtr->PhyAddress << PHY_ADDR_ALIGN);
  CommandWord |= (RegNum << REG_ADDR_ALIGN);
  CommandWord |= (MII_WRITE_FRAME | Register);

#if _DBG
  DbgPrint("CommandWord to write: %08x\n", CommandWord);
#endif
  WriteMii(Adapter, CommandWord, 2*SizeOfUshort);

  MiiOutThreeState(Adapter);
  return;
}




/*+
 *
 *   MiiPhyNwayGetLocalAbility
 *
 *   Description:
 *
 *       Returns local abilities of the PHY according to the value
 *       written in Nway Local Abilities register.
 *
 *   Input parameters:
 *
 *       PhyInfoPtr  - PMII_PHY_INFO       pointer to MII_PHY_INFO
 *
 *   Output parameters
 *
 *       *Ability     - NwayCapacity
 *
 *
-*/
extern
void
MiiPhyNwayGetLocalAbility(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO   PhyInfoPtr,
   PCAPABILITY     Ability
   )
{

#if MII_DBG
  DbgPrint("MiiPhyNwayGetLocalAbility\n");
#endif

  switch (PhyInfoPtr->PhyId) {

     case BCM5000_0:

         // Broadcom's PHY
         *Ability = (PhyInfoPtr->PhyCapabilities >> 6);
         break;

     default:

         if (PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                     Adapter,
                     PhyInfoPtr,
                     PhyNwayAdvertisement,
                     &(PhyInfoPtr->PhyRegs[PhyNwayAdvertisement])
                     )
            ) {

             *Ability = PhyInfoPtr->PhyRegs[PhyNwayAdvertisement] & MiiPhyNwayCapabilitiesMask;
         }
         else {
             *Ability = 0;
         }
  }
  return;

}




/*+
 *
 *   MiiPhyNwaySetLocalAbility
 *
 *   Description:
 *
 *       Modifies the local PHY Local abilities Advertisement register value
 *       for the purpose of limiting the media connections to be negotiated
 *       (/sent) to the link partner.
 *
 *   Input parameters:
 *
 *       PhyInfoPtr    - PMII_PHY_INFO
 *       MediaBits      - USHORT
 *
 *   Output parameters:
 *
 *       None.
 *
 *
-*/
extern
void
MiiPhyNwaySetLocalAbility(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO   PhyInfoPtr,
   USHORT           MediaBits
   )
{

#if MII_DBG
  DbgPrint("MiiPhyNwaySetLocalAbility\n");
#endif

  if (PhyInfoPtr->PhyId != BCM5000_0){
     PhyInfoPtr->PhyRegs[PhyNwayAdvertisement] =
        (PhyInfoPtr->PhyMediaAdvertisement & MediaBits) |
         NWAY_802_3_Selector;

#if MII_DBG
     DbgPrint("PhyInfoPtr->PhyRegs[PhyNwayAdvertisement] = %04x\n", PhyInfoPtr->PhyRegs[PhyNwayAdvertisement]);
     DbgPrint("SROM Advertisement = %04x\n", MediaBits);
#endif
     PhyInfoPtr->PhyIntRoutines.PhyWriteRegister(
             Adapter,
             PhyInfoPtr,
             PhyNwayAdvertisement,
             PhyInfoPtr->PhyRegs[PhyNwayAdvertisement]
             );
  }
  return;
}






/*+
 *
 *  MiiPhyNwayGetPartnerAbility
 *
 *  Description:
 *
 *     Returns link partner abilities as written in the link partner
 *     abilities register (which reflects link partner's Advertisement
 *      register).
 *  Input parameters:
 *
 *      PhyInfoPtr  - PMII_PHY_INFO      pointer to struct with PHY info
 *
 *  Output parameters:
 *
 *      *Ability     - NWayAbility       pointer to partner abilities
 *
 *
 * A value of 0 will be returned If link partner is not Nway capable or
 * does not support any known medium.
 *
-*/
extern
void
MiiPhyNwayGetPartnerAbility(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO    PhyInfoPtr,
   PCAPABILITY      Ability
   )
{

#if MII_DBG
  DbgPrint("MiiPhyNwayGetPartnerAbility\n");
#endif
  if (PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                          Adapter,
                          PhyInfoPtr,
                          PhyNwayLinkPartnerAbility,
                          &(PhyInfoPtr->PhyRegs[PhyNwayLinkPartnerAbility])
                          )
      ) {

        PhyInfoPtr->PhyRegs[PhyNwayLinkPartnerAbility] &= MiiPhyNwayCapabilitiesMask;
        *Ability = PhyInfoPtr->PhyRegs[PhyNwayLinkPartnerAbility];
  }
  else {
        *Ability = 0;
  }
  return;

}



/*+
 *
 *  FindMiiPhyDevice
 *
 *  Description:
 *
 *      Receives MII PHY address and checks if a PHY exists there.
 *      PhyInfotPtr->PhyAddress holds the PHY address
 *
 *  Input parameter:
 *
 *      PhyInfoPtr  - PMII_PHY_INFO     pointer to struct with PHY info
 *
 *  Return value:
 *
 *      FALSE - if no such PHY is found
 *      TRUE  - otherwise
 *
 *****************************************************************************/
extern
BOOLEAN
FindMiiPhyDevice(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO PhyInfoPtr
   )
{
   USHORT RegOffset;
   USHORT RegData;

#if MII_DBG
   DbgPrint("FindMiiPhyDevice\n");
#endif

   // Read PHY's Registers

   //The first two registers are mandatory
   for (RegOffset=0; RegOffset<=PhyStatusReg; RegOffset++) {
      if(PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
               Adapter,
               PhyInfoPtr,
               RegOffset,
               &RegData
               ) ){
         PhyInfoPtr->PhyRegs[RegOffset] = RegData;
      }
      else {
         return FALSE;
      }
   }

   // Read the Phy's Id Registers
   for (; RegOffset<=PhyId_2; RegOffset++) {
      if(PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
               Adapter,
               PhyInfoPtr,
               RegOffset,
               &RegData
               ) ){
         PhyInfoPtr->PhyRegs[RegOffset] = RegData;
      }
      else {
         break;
      }
   }
   if (RegOffset > PhyId_2) {
     PhyInfoPtr->PhyId =
       (PhyInfoPtr->PhyRegs[PhyId_1] <<16) | PhyInfoPtr->PhyRegs[PhyId_2];
   }


   //Read the remaining registers
   for (RegOffset=PhyNwayAdvertisement; RegOffset<MAX_PHY_REGS; RegOffset++) {
      if(PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
               Adapter,
               PhyInfoPtr,
               RegOffset,
               &RegData
               ) ){
         PhyInfoPtr->PhyRegs[RegOffset] = RegData;
      }
      else {
         break;
      }
   }

   //Check if the required number of registers have been read
   //successfully

   switch (PhyInfoPtr->PhyId) {

      case BCM5000_0 :
      case DP83840_0 :

          if (RegOffset < MAX_PHY_REGS) {
             return FALSE;
          }
          break;

      default:

          if (  (  (PhyInfoPtr->PhyRegs[PhyStatusReg] | MiiPhyNwayCapable)
                && (RegOffset <= PhyNwayLinkPartnerAbility)
                )
             || (  (PhyInfoPtr->PhyRegs[PhyNwayAdvertisement] | MiiPhyNwayNextPageAble)
                && (RegOffset <= PhyNwayExpansion )
                )
             ){
             return FALSE;
          }
          break;
   }

#if MII_DBG
   DbgPrint("Device PhyId= %08x\n", PhyInfoPtr->PhyId);
   DbgPrint("PhyStatusReg= %04x\n", PhyInfoPtr->PhyRegs[PhyStatusReg]);
#endif

   //return FALSE if the Status Register is all 0's
   //otherwise return TRUE;

   return (PhyInfoPtr->PhyRegs[PhyStatusReg] !=0);

}


/*+
 *
 *   WriteMii
 *
 *   Description:
 *
 *       Writes the data size bits from the MiiData to the Mii control lines.
 *
 *   Input parameters
 *       MiiData     - The data to be written
 *       DataSize    - The number of bits to write
 *
 *   Output parameters
 *       None.
 *
 *   Return Value
 *       TRUE if success, FALSE if hardware failure encountered.
 *
-*/
extern
void
WriteMii(
   PDC21X4_ADAPTER Adapter,
   ULONG MiiData,
   int DataSize
   )
{

   INT i;
   ULONG Dbit;

#if _DBG
   DbgPrint("WriteMii\n");
   DbgPrint("PHY: Data to write = %08x\n", MiiData);
#endif

   // Write the data to the PHY

   for (i = DataSize; i> 0; i--) {

       Dbit = ((MiiData >> (31-MII_MDO_BIT_POSITION)) & MII_MDO_MASK);

       DC21X4_WRITE_PORT(
              DC21X4_IDPROM,
              MII_WRITE | Dbit
              );

       DELAY(MII_DELAY);

       DC21X4_WRITE_PORT(
              DC21X4_IDPROM,
              MII_WRITE | MII_CLK | Dbit
              );

       DELAY(MII_DELAY);

       MiiData = MiiData << 1;
   }


}




/*+**************************************************************************
 *
 *  MiiOutThreeState
 *
 *  Description:
 *
 *      Puts the MDIO port in threestate for the turn around bits
 *      in MII read and at end of MII management sequence.
 *
 *  Parameters
 *      None.
 *
-*/
extern
void
MiiOutThreeState(
   PDC21X4_ADAPTER Adapter
   )
{

#if _DBG
  DbgPrint("MiiOutThreeState\n");
#endif
  DC21X4_WRITE_PORT(
         DC21X4_IDPROM,
         MII_WRITE_TS
         );
  DELAY(MII_DELAY);
  DC21X4_WRITE_PORT(
         DC21X4_IDPROM,
         (MII_WRITE_TS | MII_CLK)
         );
  DELAY(MII_DELAY);

  return;
}

/*+
 *
 *  InitPhyInfoEntries
 *
 *  Description:
 *
 *      Initializes the MII PHY struct by directing pointers of struct
 *      routines to routines addresses.
 *      (these addresses cannot be resolved at compile time).
 *
 *  Parameter:
 *
 *      PhyInfoPtr  - PMII_PHY_INFO     pointer to struct with PHY info
 *
 *
-*/
extern
void
InitPhyInfoEntries(
      PMII_PHY_INFO   PhyInfoPtr
     )
{
  NDIS_STATUS NdisStatus;

#if MII_DBG
  DbgPrint("InitPhyInfoEntries\n");
#endif

  PhyInfoPtr->PhyExtRoutines.PhyInit = (void *)MiiPhyInit;
  PhyInfoPtr->PhyExtRoutines.PhyGetCapabilities = (void *)MiiPhyGetCapabilities;
  PhyInfoPtr->PhyExtRoutines.PhySetConnectionType = (void *)MiiPhySetConnectionType;
  PhyInfoPtr->PhyExtRoutines.PhyGetConnectionType = (void *)MiiPhyGetConnectionType;
  PhyInfoPtr->PhyExtRoutines.PhyGetConnectionStatus = (void *)MiiPhyGetConnectionStatus;
  PhyInfoPtr->PhyExtRoutines.PhyAdminControl = (void *)MiiPhyAdminControl;
  PhyInfoPtr->PhyExtRoutines.PhyAdminStatus = (void *)MiiPhyAdminStatus;

  PhyInfoPtr->PhyIntRoutines.PhyReadRegister = (void *)MiiPhyReadRegister;
  PhyInfoPtr->PhyIntRoutines.PhyWriteRegister = (void *)MiiPhyWriteRegister;
  PhyInfoPtr->PhyIntRoutines.PhyNwayGetLocalAbility = (void *)MiiPhyNwayGetLocalAbility;
  PhyInfoPtr->PhyIntRoutines.PhyNwaySetLocalAbility = (void *)MiiPhyNwaySetLocalAbility;
  PhyInfoPtr->PhyIntRoutines.PhyNwayGetPartnerAbility = (void *)MiiPhyNwayGetPartnerAbility;

  return;
}

/*+
 *
 *  ConvertConnectionToControl
 *
 *  Input parameters
 *      PhyInfoPtr   - PMII_PHY_INFO      pointer to struct with PHY info
 *      Connection      - ConnectionType
 *
 *  Output parameters
 *      Converted Connection - ConnectionType
 *
 *    Note:   Interrupts are disabled.
 *
-*/
extern
void
ConvertConnectionToControl(
      PMII_PHY_INFO  PhyInfotPtr,
      PUSHORT        Connection
     )
{

   USHORT OM_bits = ((*Connection) & CONTROL_MASK);

#if MII_DBG
   DbgPrint("ConvertConnectionToControl\n");
   DbgPrint("Before Conversion: Connection = %04x\n", *Connection);
#endif
   // Convert Media Type to control bits

   *Connection = MediaToCommandConversionTable[*Connection & MEDIA_MASK];

   // Check if Nway bits are also needed

   if (( OM_bits & (MEDIA_NWAY | MEDIA_AUTOSENSE)))  {

      //  Autosense or Nway are required:

      switch (PhyInfotPtr->PhyId) {

         default:

            *Connection |= MiiPhyCtrlRestartNway;

         case BCM5000_0:

            *Connection |= MiiPhyCtrlEnableNway;
      }

   }

#if MII_DBG
   DbgPrint("After Conversion:  Connection = %04x\n", *Connection);
#endif

   return;

}


/*+
 *
 *  ConvertMediaTypeToNwayLocalAbility
 *
 *  Input parameters
 *      MediaType - USHORT (in SROM format)
 *
 *  Output parameters
 *      NwayLocalAbility  - CAPABILITY
 *
-*/
extern
void
ConvertMediaTypeToNwayLocalAbility(
    USHORT       MediaType,
    PCAPABILITY  NwayLocalAbility
    )
{

#if MII_DBG
   DbgPrint("ConvertMediaTypeToNwayLocalAbility\n");
   DbgPrint("MediaType = %04x\n", MediaType);
#endif

   // Convert MediaType to Nway Advertisement bits

   *NwayLocalAbility = MediaToNwayConversionTable[(MediaType & MEDIA_MASK)];
#if MII_DBG
   DbgPrint("NwayLocalAbility = %04x\n", *NwayLocalAbility);
#endif
   return;

}

/*+
 *
 *   ConvertNwayToConnectionType
 *
 *   Description:
 *
 *       Returns highest precedence media type whose bit is set in Nway
 *       word, according to the following table:
 *          +----+---------------------------+--------+
 *          |Bit | Technology                |Priority|
 *          +----+---------------------------+--------+
 *          | A0 | 10Base-T (Half-Duplex)    | 5(LSP) |
 *          +----+---------------------------+--------+
 *          | A1 | 10Base-T Full-Duplex      | 4      |
 *          +----+---------------------------+--------+
 *          | A2 | 100Base-TX (Half-Duplex)  | 3      |
 *          +----+---------------------------+--------+
 *          | A3 | 100Base-TX Full-Duplex    | 1(MSP) |
 *          +----+---------------------------+--------+
 *          | A4 | 100Base-T4                | 2      |
 *          +----+---------------------------+--------+
 *
 *On Entry:
 *              NwayReg - Nway register bits (in Advertisement format).
 *On Return:
 *    NwayReg - The converted ConnectionType
 *
 *Return Value
 *    FALSE - No Media Found
 *    TRUE  - Media found and returned in NwayReg
 *
-*/
extern
BOOLEAN
ConvertNwayToConnectionType(
   CAPABILITY NwayReg,
   PUSHORT    Connection
   )
{

#if MII_DBG
   DbgPrint("ConvertNwayToConnectionType\n");
#endif
   if (NwayReg & MiiPhyNway100BaseTxFD) {
      // 100BaseTx FD
      *Connection = (MediumMii100BaseTxFullDuplex | MediaAutoSense);
   }
   else if (NwayReg & MiiPhyNway100BaseT4) {
      // 100BaseT4
      *Connection = (MediumMii100BaseT4 | MediaAutoSense);
   }
   else if (NwayReg & MiiPhyNway100BaseTx) {
      // 100BaseTx
      *Connection = (MediumMii100BaseTx | MediaAutoSense);
   }
   else if (NwayReg & MiiPhyNway10BaseTFD) {
      // 10BaseT FD
      *Connection = (MediumMii10BaseTFullDuplex | MediaAutoSense);
   }
   else if (NwayReg & MiiPhyNway10BaseT) {
      // 10BaseT
      *Connection = (MediumMii10BaseT | MediaAutoSense);
   }
   else {
      // No media found
      return FALSE;
   }
   return TRUE;
}


/*+
 *
 *  CheckConnectionSupport
 *
 *  Input parameters:
 *
 *      PhyInfoPtr - PMII_PHY_INFO         pointer to struct with PHY info
 *      MiiMediaCapable - Mii Media capability mask from the SROM
 *      ConCommand - Connection command bits (in SROM format)
 *
 *  Return value:
 *
 *      FALSE - Connection NOT supported
 *      TRUE  - Connection supported
 *
-*/
extern
BOOLEAN
CheckConnectionSupport(
         PMII_PHY_INFO PhyInfoPtr,
         USHORT        ConCommand
         )
{
   USHORT StatusBits;

#if MII_DBG
   DbgPrint("CheckConnectionSupport\n");
#endif

   if ((ConCommand & (MEDIA_NWAY | MEDIA_AUTOSENSE))){
      //NWAY or AutoSense are required
#if MII_DBG
      DbgPrint("NWAY or AutoSensing\n");
#endif
      return ((PhyInfoPtr->PhyCapabilities & MiiPhyNwayCapable) != 0);
   }

   //Convert media to status bits

   StatusBits = MediaToStatusConversionTable[(ConCommand & MEDIA_MASK)];
#if MII_DBG
   DbgPrint("Before Conversion:  ConCommand = %04x\n", ConCommand);
   DbgPrint("After Conversion:   StatusBits = %04x\n", StatusBits);
#endif

   //Return TRUE if the requested medium is supported by the PHY

   return ((StatusBits & PhyInfoPtr->PhyCapabilities) != 0);

}










//****************************************************************************
//*                          Broadcom support routines                       *
//****************************************************************************

/*+
 *Broadcom extended register (address 16)
 *---------------------------------------
 *
 *     +-----+----------------+---------------------------+-----------------------------+
 *     | Bit |     Name      |         Description         |        Comments             |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     | 15  | JABDIS         |1=Jubber Disabled          | Default 0  (R/W)            |
 *     |     |                |1=Jubber Enabled           |                             |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     | 14  | LINKDIS        |1=Link test Disabled       | Default 0  (R/W)            |
 *     |     |             |0=Link test Enabled        |                             |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     |13-9 | reserved       |                           |Write as 0, Ignore on read   |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     |  8  |FORCEFAIL_EN    |1=Force fail enabled       | Default 1   (R/W)           |
 *     |     |                |0=Force fail disabled      |                             |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     | 7-5 |RV_CNTR         |Revision control indicator | Value is 000  (RO)          |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     | 4-3 |HSQ:LSQ         |Defines the squelch mode of|10=High squelch, 00=Normal   |
 *     |     |                |the carrier sense mechanism|01=Low Squelch,11=Not allowed|
 *     |     |          |             |Default 00     (R/W)         |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     |  2  |TXDAC power mode|             |Default 0      (R/W)               |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     |  1  |Speed Indication|1 = 100Mbps mode           |Default 0       RO           |
 *     |     |                |0 =  10Mbps mode           |                             |
 *     +-----+----------------+---------------------------+-----------------------------+
 *     |  0  |reserved        |             |                           |
 *     +-----+----------------+---------------------------+-----------------------------+
-*/





/*+
 *
 *   HandleBroadcomMediaChangeFrom10To100
 *
 *   Description:
 *
 *       Handle Broadcom special requirements for speed change from 10 to 100 Mbps
 *
 *   Input parameters:
 *
 *       PhyInfoPtr  - PMII_PHY_INFO       pointer to struct with PHY info
 *
 *   Output parameters:
 *
 *       None.
 *
 *
-*/
extern
void
HandleBroadcomMediaChangeFrom10To100(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO  PhyInfoPtr
   )
{

   USHORT Register;

#if MII_DBG
   DbgPrint("HandleBroadcomMediaChangeFrom10To100\n");
#endif
   PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
          Adapter,
          PhyInfoPtr,
          MII_BROADCOM_EXTENDED_REG_ADDRESS,
          &Register
          );

   if (  (Register != PhyInfoPtr->PhyRegs[MII_BROADCOM_EXTENDED_REG_ADDRESS])
      && (Register & BROADCOM_EXT_REG_FORCE_FAIL_EN_MASK)
      && (Register & BROADCOM_EXT_REG_SPEED_MASK)
      && !( PhyInfoPtr->PhyRegs[MII_BROADCOM_EXTENDED_REG_ADDRESS]
            & BROADCOM_EXT_REG_SPEED_MASK
          )
      ) {
      // Speed has changed :
      // reset the PHY and restore the old control value
#if MII_DBG
      DbgPrint("Speed has changed; reset PHY and restore old ctrl value\n");
#endif
      PhyInfoPtr->PhyExtRoutines.PhyAdminControl(
             Adapter,
             PhyInfoPtr,
             MiiGenAdminReset
             );
      PhyInfoPtr->PhyIntRoutines.PhyWriteRegister(
             Adapter,
             PhyInfoPtr,
             PhyControlReg,
             PhyInfoPtr->PhyRegs[PhyControlReg]
             );
   }
   PhyInfoPtr->PhyRegs[MII_BROADCOM_EXTENDED_REG_ADDRESS] = Register;

   return;
}






/*+
 *
 *   GetBroadcomPhyConnectionType
 *
 *   Description:
 *
 *       Returns connection type, which may be one of the following:
 *          T4
 *          Tp
 *          TpFD
 *
 *   Input parameters:
 *
 *       PhyInfoPtr  - PMII_PHY_INFO     pointer to struct with PHY info
 *
 *   Output parameters:
 *
 *       Connection     - ConnectionType
 *
 *   On return
 *       Returns TRUE if
 *
-*/
extern
BOOLEAN
GetBroadcomPhyConnectionType(
   PDC21X4_ADAPTER Adapter,
   PMII_PHY_INFO PhyInfoPtr,
   PUSHORT       Connection
   )
{

   USHORT  Register;

#if MII_DBG
   DbgPrint("GetBroadcomPhyConnectionType\n");
#endif
   if (!PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                    Adapter,
                    PhyInfoPtr,
                    MII_BROADCOM_EXTENDED_REG_ADDRESS,
                    &Register
                    )) {
      return FALSE;
   }

   if ((Register & BROADCOM_EXT_REG_FORCE_FAIL_EN_MASK) == 0){
      return FALSE;
   }

   if (!PhyInfoPtr->PhyIntRoutines.PhyReadRegister(
                    Adapter,
                    PhyInfoPtr,
                    PhyControlReg,
                    &(PhyInfoPtr->PhyRegs[PhyControlReg])
                    )) {
      return FALSE;
   }

   if (Register & BROADCOM_EXT_REG_SPEED_MASK){
      // Speed is 100Mbps
      *Connection = MediumMii100BaseT4;
   }
   else {
      // Speed is 10Mbps
      *Connection =
         (PhyInfoPtr->PhyRegs[PhyControlReg] & MiiPhyCtrlDuplexMode) ?
         MediumMii10BaseTFullDuplex : MediumMii10BaseT;
   }

   if (PhyInfoPtr->PhyRegs[PhyControlReg] &  MiiPhyCtrlEnableNway) {
      *Connection |= (MEDIA_AUTOSENSE | MEDIA_NWAY);
   }
#if MII_DBG
   DbgPrint("ConnectionType= %04x\n", *Connection);
#endif

   return TRUE;
}