Marvell Yukon 88E8053
Nick Hilliard
nick-list at netability.ie
Fri Jan 28 04:17:09 PST 2005
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
-------------- next part --------------
--- 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
More information about the freebsd-net
mailing list