Marvell Yukon 88E8053

From: Nick Hilliard (nick-list_at_netability.ie)
Date: 01/28/05

  • Next message: Chris Cowen: "racoon behaviour when SA expires"
    To: freebsd-net@freebsd.org
    Date: Fri, 28 Jan 2005 12:16:50 +0000
    
    
    

    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

    
    

    --- 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

    
    

    _______________________________________________
    freebsd-net@freebsd.org mailing list
    http://lists.freebsd.org/mailman/listinfo/freebsd-net
    To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org"


  • Next message: Chris Cowen: "racoon behaviour when SA expires"

    Relevant Pages