1 .\" Written by Tom Rhodes for the FreeBSD Project.
2 .\" Please see the /usr/src/COPYRIGHT file for copyright information.
4 .\" This document takes information from the IEEE 802.3 Standard
5 .\" along with various comments from Peter Wemm, Robert Watson, and Bill Paul.
6 .\" Originally this file looked much like the NetBSD mii(4) manual page, but
7 .\" I doubt you would ever notice due to large differences.
16 .Nd IEEE 802.3 Media Independent Interface network bus
18 For most network interface cards (NIC):
23 driver provides an interconnection between the Media Access Control (MAC)
24 sublayer, the Physical Layer entities (PHY), Station Management (STA)
25 entities, and the PHY Layer as defined by the IEEE 802.3 Standard.
29 layer allows network device drivers to share common support
30 code for various external PHY devices.
31 Most 10/100 network interface cards either use an MII transceiver
32 or have built-in transceivers that can be programmed using an MII
36 driver currently handles all of the media detection,
37 selection, and reporting using the ifmedia interface.
38 A generic driver has been included for all PHYs that are not
39 handled by a specific driver, this is possible because all
40 10/100 PHYs implement the same general register set along with
41 their vendor specific register set.
43 The following network device drivers use the
47 .Bl -tag -compact -width ".Xr fxp 4"
49 Attansic/Atheros L1 Gigabit Ethernet
53 ASIX Electronics AX88172 USB Ethernet
55 Broadcom NetXtreme II Gigabit Ethernet
57 Broadcom BCM4401 Ethernet
59 Broadcom BCM570xx Gigabit Ethernet
61 DEC/Intel 21143 and various workalikes
63 NE[12]000, SMC Ultra, 3c503, DS8390 cards
65 Agere ET1310 Gigabit Ethernet
67 Intel EtherExpress PRO/100B
69 Sun ERI, Sun GEM and Apple GMAC Ethernet
73 JMicron JMC250 Gigabit/JMC260 Fast Ethernet
75 Level 1 LXT1001 NetCellerator Gigabit Ethernet
77 Marvell/SysKonnect Yukon II Gigabit Ethernet
79 NVIDIA nForce MCP Networking Adapter
81 National Semiconductor DP83820/DP83821 Gigabit Ethernet
83 NVIDIA nForce MCP Networking Adapter
85 AMD Am79C97x PCI 10/100
87 RealTek 8139C+/8169/8169S/8110S
91 RealTek RTL8150 USB To Fast Ethernet
95 Silicon Integrated Systems SiS 900/SiS 7016
97 SysKonnect SK-984x and SK-982x Gigabit Ethernet
99 Sundance ST201 (D-Link DFE-550TX)
101 Sundance/Tamarack TC9021 Gigabit Ethernet
103 Texas Instruments ThunderLAN
105 SMC EtherPower II (83c170)
107 Davicom DM9601 USB Ethernet
109 VIA VT612x PCI Gigabit Ethernet
118 The implementation of
120 was originally intended to have similar API interfaces
125 but as a result are not well behaved newbus device drivers.
164 More information on MII can be found in the IEEE 802.3 Standard.
168 driver first appeared in
171 This manual page was written by
172 .An Tom Rhodes Aq trhodes@FreeBSD.org .