Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Apr 2008 10:36:34 +0900
From:      Pyun YongHyeon <pyunyh@gmail.com>
To:        "Victor M. Blood" <freebsd@masm.elcom.ru>
Cc:        All <freebsd-current@freebsd.org>
Subject:   Re: P5N-MX intagrated network controller not work
Message-ID:  <20080407013634.GC38024@cdnetworks.co.kr>
In-Reply-To: <1581375349.20080406195213@masm.elcom.ru>
References:  <1581375349.20080406195213@masm.elcom.ru>

next in thread | previous in thread | raw e-mail | index | archive | help

--cmJC7u66zC7hs+87
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Sun, Apr 06, 2008 at 07:52:13PM +0400, Victor M. Blood wrote:
 > Hi, All.
 > 
 > Intagrated 100/10 LAN do not work with NVE or NFE drivers. Chipset
 > nForce 610i, what I can do to make this card usable under freebsd.
 > 
 > Here part of pciconf -lv|grep -a3 network
 > none12@pci0:0:15:0:     class=0x020000 card=0x816a1043 chip=0x07dc10de rev=0xa2 hdr=0x00
 >     vendor     = 'Nvidia Corp'
 >     class      = network
 >     subclass   = ethernet
 > 
 >     

Please try attached patch and let me know how it goes.

-- 
Regards,
Pyun YongHyeon

--cmJC7u66zC7hs+87
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="nfe.mcp73.patch"

--- sys/dev/nfe/if_nfe.c.orig	2008-03-06 10:47:53.000000000 +0900
+++ sys/dev/nfe/if_nfe.c	2008-04-07 10:32:17.000000000 +0900
@@ -237,6 +237,14 @@
 	    "NVIDIA nForce MCP67 Networking Adapter"},
 	{PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN4,
 	    "NVIDIA nForce MCP67 Networking Adapter"},
+	{PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN1,
+	    "NVIDIA nForce MCP73 Networking Adapter"},
+	{PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN2,
+	    "NVIDIA nForce MCP73 Networking Adapter"},
+	{PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN3,
+	    "NVIDIA nForce MCP73 Networking Adapter"},
+	{PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN4,
+	    "NVIDIA nForce MCP73 Networking Adapter"},
 	{0, 0, NULL}
 };
 
@@ -452,6 +460,10 @@
 	case PCI_PRODUCT_NVIDIA_MCP67_LAN2:
 	case PCI_PRODUCT_NVIDIA_MCP67_LAN3:
 	case PCI_PRODUCT_NVIDIA_MCP67_LAN4:
+	case PCI_PRODUCT_NVIDIA_MCP73_LAN1:
+	case PCI_PRODUCT_NVIDIA_MCP73_LAN2:
+	case PCI_PRODUCT_NVIDIA_MCP73_LAN3:
+	case PCI_PRODUCT_NVIDIA_MCP73_LAN4:
 		sc->nfe_flags |= NFE_40BIT_ADDR | NFE_PWR_MGMT |
 		    NFE_CORRECT_MACADDR | NFE_TX_FLOW_CTRL;
 		break;
--- sys/dev/nfe/if_nfereg.h.orig	2008-03-06 10:47:53.000000000 +0900
+++ sys/dev/nfe/if_nfereg.h	2008-04-07 10:29:17.000000000 +0900
@@ -291,6 +291,10 @@
 #define	PCI_PRODUCT_NVIDIA_MCP67_LAN2		0x054d
 #define	PCI_PRODUCT_NVIDIA_MCP67_LAN3		0x054e
 #define	PCI_PRODUCT_NVIDIA_MCP67_LAN4		0x054f
+#define	PCI_PRODUCT_NVIDIA_MCP73_LAN1		0x07dc
+#define	PCI_PRODUCT_NVIDIA_MCP73_LAN2		0x07dd
+#define	PCI_PRODUCT_NVIDIA_MCP73_LAN3		0x07de
+#define	PCI_PRODUCT_NVIDIA_MCP73_LAN4		0x07df
 
 #define	PCI_PRODUCT_NVIDIA_NFORCE3_LAN2	PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN1
 #define	PCI_PRODUCT_NVIDIA_NFORCE3_LAN3	PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN2

--cmJC7u66zC7hs+87--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080407013634.GC38024>