Cardbus GbE (Realtek 8169SBL) supported?
Norikatsu Shigemura
nork at FreeBSD.org
Sat May 17 14:12:26 UTC 2008
I bought a cardbus GbE card used Realtek 8169SBL, today:-). But
re(4) doesn't attach it.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
re0: <RealTek 8169 Gigabit Ethernet> port 0x3100-0x31ff mem 0xb0103000-0xb01031ff irq 22 at device 0.0 on cardbus0
re0: reset never completed!
re0: Unknown H/W revision: 7cc00000
device_attach: re0 attach returned 6
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
I fixed 'Unknown H/W revision' issue, but...
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
--- sys/dev/re/if_re.c.orig 2008-04-15 16:02:23.631923000 +0900
+++ sys/dev/re/if_re.c 2008-05-17 23:06:05.632249124 +0900
@@ -225,6 +225,7 @@
{ RL_HWREV_8101E, RL_8169, "8101E"},
{ RL_HWREV_8168_SPIN2, RL_8169, "8168"},
{ RL_HWREV_8168_SPIN3, RL_8169, "8168"},
+ { RL_HWREV_8169_8110SBL, RL_8169, "8169SBL"},
{ 0, 0, NULL }
};
--- sys/pci/if_rlreg.h.orig 2008-03-31 13:03:14.000000000 +0900
+++ sys/pci/if_rlreg.h 2008-05-17 23:07:01.584996720 +0900
@@ -171,6 +171,7 @@
#define RL_HWREV_8139CPLUS 0x74800000
#define RL_HWREV_8101 0x74c00000
#define RL_HWREV_8100 0x78800000
+#define RL_HWREV_8169_8110SBL 0x7cc00000
#define RL_TXDMA_16BYTES 0x00000000
#define RL_TXDMA_32BYTES 0x00000100
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
I couldn't fix mii phy issue.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
re0: <RealTek 8169 Gigabit Ethernet> port 0x3100-0x31ff mem 0xb0103000-0xb01031ff irq 22 at device 0.0 on cardbus0
re0: reset never completed!
re0: MII without any phy!
device_attach: re0 attach returned 6
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
How do I fix this issue? What I should report?
More information about the freebsd-current
mailing list