From owner-svn-src-all@FreeBSD.ORG  Sat Feb 25 00:41:38 2012
Return-Path: <owner-svn-src-all@FreeBSD.ORG>
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 38F45106564A;
	Sat, 25 Feb 2012 00:41:38 +0000 (UTC)
	(envelope-from marius@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 0DDAF8FC1A;
	Sat, 25 Feb 2012 00:41:38 +0000 (UTC)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q1P0fbWZ091260;
	Sat, 25 Feb 2012 00:41:37 GMT (envelope-from marius@svn.freebsd.org)
Received: (from marius@localhost)
	by svn.freebsd.org (8.14.4/8.14.4/Submit) id q1P0fbS3091257;
	Sat, 25 Feb 2012 00:41:37 GMT (envelope-from marius@svn.freebsd.org)
Message-Id: <201202250041.q1P0fbS3091257@svn.freebsd.org>
From: Marius Strobl <marius@FreeBSD.org>
Date: Sat, 25 Feb 2012 00:41:37 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
X-SVN-Group: stable-8
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r232138 - in stable/8/sys: dev/mii i386/conf
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for &quot;
	user&quot; and &quot; projects&quot; \)" <svn-src-all.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-all>,
	<mailto:svn-src-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-all>
List-Post: <mailto:svn-src-all@freebsd.org>
List-Help: <mailto:svn-src-all-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-all>,
	<mailto:svn-src-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 25 Feb 2012 00:41:38 -0000

Author: marius
Date: Sat Feb 25 00:41:37 2012
New Revision: 232138
URL: http://svn.freebsd.org/changeset/base/232138

Log:
  MFC: r231914
  
  Probe the National DP83849, which is a dual-port version of the PHYTER.
  
  Obtained from:	NetBSD
  Approved by:	re (kib)

Modified:
  stable/8/sys/dev/mii/miidevs
  stable/8/sys/dev/mii/nsphyter.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)
  stable/8/sys/i386/conf/XENHVM   (props changed)

Modified: stable/8/sys/dev/mii/miidevs
==============================================================================
--- stable/8/sys/dev/mii/miidevs	Sat Feb 25 00:41:35 2012	(r232137)
+++ stable/8/sys/dev/mii/miidevs	Sat Feb 25 00:41:37 2012	(r232138)
@@ -213,6 +213,7 @@ model NATSEMI DP83847		0x0003 DP83847 10
 model NATSEMI DP83891		0x0005 DP83891 10/100/1000 media interface
 model NATSEMI DP83861		0x0006 DP83861 10/100/1000 media interface
 model NATSEMI DP83865		0x0007 DP83865 10/100/1000 media interface
+model NATSEMI DP83849		0x000a DP83849 10/100 media interface
 
 /* Quality Semiconductor PHYs */
 model QUALSEMI QS6612		0x0000 QS6612 10/100 media interface

Modified: stable/8/sys/dev/mii/nsphyter.c
==============================================================================
--- stable/8/sys/dev/mii/nsphyter.c	Sat Feb 25 00:41:35 2012	(r232137)
+++ stable/8/sys/dev/mii/nsphyter.c	Sat Feb 25 00:41:37 2012	(r232138)
@@ -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.
@@ -114,6 +115,7 @@ static const struct mii_phydesc nsphyter
 	MII_PHY_DESC(NATSEMI, DP83815),
 	MII_PHY_DESC(NATSEMI, DP83843),
 	MII_PHY_DESC(NATSEMI, DP83847),
+	MII_PHY_DESC(NATSEMI, DP83849),
 	MII_PHY_END
 };