From owner-freebsd-current@FreeBSD.ORG Sat May 17 14:12:26 2008 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AA1A1065670 for ; Sat, 17 May 2008 14:12:26 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (unknown [IPv6:2001:2f0:104:80a0:230:48ff:fe41:2455]) by mx1.freebsd.org (Postfix) with ESMTP id 825078FC1A for ; Sat, 17 May 2008 14:12:25 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.14.1/8.14.1/NinthNine) with SMTP id m4HECLIT073289 for ; Sat, 17 May 2008 23:12:23 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 17 May 2008 23:12:20 +0900 From: Norikatsu Shigemura To: freebsd-current@FreeBSD.org Message-Id: <20080517231220.c64a992b.nork@FreeBSD.org> X-Mailer: Sylpheed 2.5.0beta3 (GTK+ 2.12.9; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 17 May 2008 23:12:24 +0900 (JST) Cc: Subject: Cardbus GbE (Realtek 8169SBL) supported? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 May 2008 14:12:26 -0000 I bought a cardbus GbE card used Realtek 8169SBL, today:-). But re(4) doesn't attach it. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - re0: 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: 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?