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.
9 .\" $FreeBSD: src/share/man/man4/miibus.4,v 1.3.2.6 2004/03/01 09:22:11 brueffer Exp $
10 .\" $DragonFly: src/share/man/man4/miibus.4,v 1.10 2007/05/26 22:54:28 swildner Exp $
17 .Nd IEEE 802.3 Media Independent Interface network bus
19 For most network interface cards (NIC):
24 driver provides an interconnection between the Media Access Control (MAC)
25 sublayer, the Physical Layer entities (PHY), Station Management (STA)
26 entities, and the PHY Layer as defined by the IEEE 802.3 Standard.
30 layer allows network device drivers to share common support
31 code for various external PHY devices.
32 Most 10/100 network interface cards either use an MII transceiver
33 or have built-in transceivers that can be programmed using an MII
37 driver currently handles all of the media detection,
38 selection, and reporting using the
41 A generic driver has been included for all PHYs that are not
42 handled by a specific driver, this is possible because all
43 10/100 PHYs implement the same general register set along with
44 their vendor specific register set.
46 The following network device drivers use the
50 .Bl -tag -compact -width ".Xr fxp 4"
54 ASIX Electronics AX88172 USB Ethernet
56 Broadcom BCM5706/BCM5708 Gigabit Ethernet
58 Broadcom BCM440x 10/100 Ethernet
60 Broadcom BCM570xx Gigabit Ethernet
62 DEC/Intel 21143 and various workalikes
64 NE[12]000, SMC Ultra, 3c503, DS8390 cards
66 Intel EtherExpress PRO/100B
68 Intel Pro/1000 82542/82543 Gigabit Ethernet
70 Level 1 LXT1001 NetCellerator Gigabit Ethernet
72 NVIDIA nForce MCP 10/100/Gigabit Ethernet
74 National Semiconductor DP83820/DP83821 Gigabit Ethernet
76 NVIDIA nForce MCP Networking Adapter
78 AMD Am79C97x PCI 10/100
80 RealTek 8139C+/8169/8169S/8110S
84 RealTek RTL8150 USB To Fast Ethernet
88 Silicon Integrated Systems SiS 900/SiS 7016
90 SysKonnect SK-984x and SK-982x Gigabit Ethernet
92 Sundance ST201 (D-Link DFE-550TX)
94 Sundance/Tamarack TC9021 Gigabit Ethernet
96 Texas Instruments ThunderLAN
98 SMC EtherPower II (83c170)
100 VIA Networking Technologies VT6122 PCI Gigabit Ethernet
109 The implementation of
111 was originally intended to have similar API interfaces
116 but as a result are not well behaved newbus device drivers.
149 More information on MII can be found in the IEEE 802.3 Standard.
153 driver first appeared in
156 This manual page was written by
157 .An Tom Rhodes Aq trhodes@FreeBSD.org .