Andrew Robinson <[EMAIL PROTECTED]> writes:
> re_probe(): vid 10ec did 8169 hwrev 10000000
That's an 8169SB, which is supported in -CURRENT. Try the attached
patch. I'll try to get it merged before 5.4-RELEASE.
DES
--
Dag-Erling Sm�rgrav - [EMAIL PROTECTED]
Index: sys/pci/if_rlreg.h
===================================================================
RCS file: /home/ncvs/src/sys/pci/if_rlreg.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- sys/pci/if_rlreg.h 7 Jan 2005 02:29:18 -0000 1.49
+++ sys/pci/if_rlreg.h 22 Jan 2005 22:40:52 -0000 1.50
@@ -147,6 +147,7 @@
#define RL_HWREV_8169 0x00000000
#define RL_HWREV_8169S 0x04000000
+#define RL_HWREV_8169SB 0x10000000
#define RL_HWREV_8110S 0x00800000
#define RL_HWREV_8139 0x60000000
#define RL_HWREV_8139A 0x70000000
Index: sys/dev/re/if_re.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/re/if_re.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- sys/dev/re/if_re.c 6 Jan 2005 01:43:10 -0000 1.38
+++ sys/dev/re/if_re.c 22 Jan 2005 22:40:53 -0000 1.39
@@ -166,6 +166,8 @@
"RealTek 8169 Gigabit Ethernet" },
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169S,
"RealTek 8169S Single-chip Gigabit Ethernet" },
+ { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169SB,
+ "RealTek 8169SB Single-chip Gigabit Ethernet" },
{ RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8110S,
"RealTek 8110S Single-chip Gigabit Ethernet" },
{ COREGA_VENDORID, COREGA_DEVICEID_CGLAPCIGT, RL_HWREV_8169S,
@@ -184,6 +186,7 @@
{ RL_HWREV_8139CPLUS, RL_8139CPLUS, "C+"},
{ RL_HWREV_8169, RL_8169, "8169"},
{ RL_HWREV_8169S, RL_8169, "8169S"},
+ { RL_HWREV_8169SB, RL_8169, "8169SB"},
{ RL_HWREV_8110S, RL_8169, "8110S"},
{ RL_HWREV_8100, RL_8139, "8100"},
{ RL_HWREV_8101, RL_8139, "8101"},
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[EMAIL PROTECTED]"