Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Mar 2005 03:07:43 -0500
From:      Adam Gregoire <ebola@psychoholics.org>
To:        "David E. O'Brien" <obrien@FreeBSD.org>
Cc:        cvs-all@FreeBSD.org
Subject:   Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/conf files.amd64 files.i386 src/sys/dev/nve if_nve.c if_nvereg.h src/sys/modules/nve	Makefile
Message-ID:  <1110614864.2680.10.camel@S0106066606660666.su.shawcable.net>
In-Reply-To: <200503120029.j2C0TUGn056138@repoman.freebsd.org>
References:  <200503120029.j2C0TUGn056138@repoman.freebsd.org>

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

--=-LJJGl3YPc+z/l7R4/2L1
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

On Sat, 2005-03-12 at 00:29 +0000, David E. O'Brien wrote:
> obrien      2005-03-12 00:29:30 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/amd64/conf       GENERIC 
>     sys/conf             files.amd64 files.i386 
>     sys/i386/conf        GENERIC 
>     sys/modules          Makefile 
>   Added files:
>     sys/dev/nve          if_nve.c if_nvereg.h 
>     sys/modules/nve      Makefile 
>   Log:
>   FreeBSD consumer bits of the nForce MCP NIC binary blob.
>   

Attached patch sys/dev/nve/ if_nve.c if_nvereg.h to support the PCI-ID
of my nForce MCP3 250Gb NIC to detect. The MB is an Asus K8N-E Deluxe.

nv0: <NVIDIA nForce MCP3 250Gb Networking Adapter> port 0xec00-0xec07
mem 0xff6fc000-0xff6fcfff irq 7 at device 5.0 on pci0

-- 
Adam Gregoire <ebola@psychoholics.org>

--=-LJJGl3YPc+z/l7R4/2L1
Content-Description: 
Content-Disposition: inline; filename=if_nve.c.diff
Content-Type: text/x-patch; charset=UTF-8
Content-Transfer-Encoding: 7bit

--- if_nve.c.orig	Sat Mar 12 02:47:30 2005
+++ if_nve.c	Sat Mar 12 02:41:03 2005
@@ -215,6 +215,8 @@
 	"NVIDIA nForce MCP2 Networking Adapter"},
 	{NVIDIA_VENDORID, NFORCE_MCPNET3_DEVICEID,
 	"NVIDIA nForce MCP3 Networking Adapter"},
+	{NVIDIA_VENDORID, NFORCE_MCPNET3_250_DEVICEID,
+	"NVIDIA nForce MCP3 250Gb Networking Adapter"},
 	{0, 0, NULL}
 };
 

--=-LJJGl3YPc+z/l7R4/2L1
Content-Description: 
Content-Disposition: inline; filename=if_nvereg.h.diff
Content-Type: text/x-patch; charset=UTF-8
Content-Transfer-Encoding: 7bit

--- if_nvereg.h.orig	Sat Mar 12 02:47:41 2005
+++ if_nvereg.h	Sat Mar 12 02:34:08 2005
@@ -37,6 +37,7 @@
 #define	NFORCE_MCPNET1_DEVICEID 0x01C3
 #define	NFORCE_MCPNET2_DEVICEID 0x0066
 #define	NFORCE_MCPNET3_DEVICEID 0x00D6
+#define	NFORCE_MCPNET3_250_DEVICEID 0x00DF
 
 #define	NV_RID		0x10
 

--=-LJJGl3YPc+z/l7R4/2L1--



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