Date: Fri, 28 Jan 2005 12:16:50 +0000 From: Nick Hilliard <nick-list@netability.ie> To: freebsd-net@freebsd.org Subject: Marvell Yukon 88E8053 Message-ID: <1106914610.32953.12.camel@pancake.netability.ie>
next in thread | raw e-mail | index | archive | help
--=-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: <Marvell Yukon 88E8053 Gigabit Ethernet> 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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1106914610.32953.12.camel>