P5N-MX intagrated network controller not work
Pyun YongHyeon
pyunyh at gmail.com
Mon Apr 7 01:36:43 UTC 2008
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 at 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
-------------- next part --------------
--- 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
More information about the freebsd-current
mailing list