Skip to content

Commit

Permalink
Probe the National DP83849, which is a dual-port version of the PHYTER.
Browse files Browse the repository at this point in the history
Obtained from:	NetBSD
  • Loading branch information
sparcplug committed Feb 19, 2012
1 parent 69ca78c commit 041b33e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion sys/dev/mii/miidevs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$FreeBSD$
/*$NetBSD: miidevs,v 1.104 2011/11/12 11:10:49 sekiya Exp $*/
/*$NetBSD: miidevs,v 1.105 2011/11/25 23:28:14 jakllsch Exp $*/

/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
Expand Down Expand Up @@ -280,6 +280,7 @@ model xxNATSEMI DP83847 0x0003 DP83847 10/100 media interface
model xxNATSEMI DP83891 0x0005 DP83891 1000BASE-T media interface
model xxNATSEMI DP83861 0x0006 DP83861 1000BASE-T media interface
model xxNATSEMI DP83865 0x0007 DP83865 1000BASE-T media interface
model xxNATSEMI DP83849 0x000a DP83849 10/100 media interface

/* PMC Sierra PHYs */
model xxPMCSIERRA PM8351 0x0000 PM8351 OctalPHY Gigabit interface
Expand Down
6 changes: 4 additions & 2 deletions sys/dev/mii/nsphyter.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@
__FBSDID("$FreeBSD$");

/*
* driver for National Semiconductor's DP83843 `PHYTER' ethernet 10/100 PHY
* Data Sheet available from www.national.com
* Driver for the National Semiconductor's DP83843, DP83847 and DP83849
* `PHYTER' Ethernet 10/100 PHYs
* Data Sheets are available from http://www.national.com
*
* We also support the DP83815 `MacPHYTER' internal PHY since, for our
* purposes, they are compatible.
Expand Down Expand Up @@ -114,6 +115,7 @@ static const struct mii_phydesc nsphyters[] = {
MII_PHY_DESC(xxNATSEMI, DP83815),
MII_PHY_DESC(xxNATSEMI, DP83843),
MII_PHY_DESC(xxNATSEMI, DP83847),
MII_PHY_DESC(xxNATSEMI, DP83849),
MII_PHY_END
};

Expand Down

0 comments on commit 041b33e

Please sign in to comment.