From owner-freebsd-net@FreeBSD.ORG Fri Jan 28 12:17:09 2005 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92F316A4CE for ; Fri, 28 Jan 2005 12:17:09 +0000 (GMT) Received: from mail.acquirer.com (mail.acquirer.com [213.94.200.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33FD143D41 for ; Fri, 28 Jan 2005 12:16:57 +0000 (GMT) (envelope-from nick-list@netability.ie) X-Envelope-To: Received: from [IPv6:2001:bb0:ccc0:1::44] ([IPv6:2001:bb0:ccc0:1::44]) by mail.acquirer.com (8.12.10/8.12.9) with ESMTP id j0SCGpQ0018395 for ; Fri, 28 Jan 2005 12:16:51 GMT (envelope-from nick-list@netability.ie) From: Nick Hilliard To: freebsd-net@freebsd.org Content-Type: multipart/mixed; boundary="=-1uKGEFJriN72s3hIgFEh" Date: Fri, 28 Jan 2005 12:16:50 +0000 Message-Id: <1106914610.32953.12.camel@pancake.netability.ie> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port Subject: Marvell Yukon 88E8053 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Jan 2005 12:17:09 -0000 --=-1uKGEFJriN72s3hIgFEh Content-Type: text/plain Content-Transfer-Encoding: 7bit I have a new motherboard (intel 915 p combo, aka msi ms-7058) with an integrated pci-e Marvell Yukon 88E8053 gig nic installed. By the looks of it, this ought to be supported by the sk driver. However, if I modify if_sk.c to add the PCI ID (vendor: 0x11ab, device 0x4362) into struct sk_devs[], it comes up with the following: > skc0: port 0xc800-0xc8ff mem 0xdfefc000-0xdfefffff irq 16 at device 0.0 on pci3 > skc0: unknown device! > device_attach: skc0 attach returned 6 src diff attached. It would be nice to get this nic working, if possible. Can anyone suggest how one might go about figuring out what's wrong and fixing it? Nick --=-1uKGEFJriN72s3hIgFEh Content-Disposition: attachment; filename=diffs Content-Type: text/plain; name=diffs; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit --- if_sk.c.orig Thu Jan 6 17:54:47 2005 +++ if_sk.c Fri Jan 28 12:12:55 2005 @@ -157,6 +157,11 @@ }, { VENDORID_MARVELL, + DEVICEID_MARVELL_88E8053, + "Marvell Yukon 88E8053 Gigabit Ethernet" + }, + { + VENDORID_MARVELL, DEVICEID_BELKIN_5005, "Belkin F5D5005 Gigabit Ethernet" }, --- if_skreg.h.orig Thu Jan 6 17:54:47 2005 +++ if_skreg.h Fri Jan 28 12:12:45 2005 @@ -65,6 +65,12 @@ #define VENDORID_MARVELL 0x11AB /* + * Marvell Yukon 88E8053 PCI Express Gigabit Ethernet Controller + */ + +#define DEVICEID_MARVELL_88E8053 0x4362 + +/* * SK-NET gigabit ethernet device IDs */ #define DEVICEID_SK_V1 0x4300 --=-1uKGEFJriN72s3hIgFEh--