Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Dec 2006 10:22:06 +0100
From:      Pascal Hofstee <caelian@gmail.com>
To:        "Bruce M. Simpson" <bms@FreeBSD.org>
Cc:        current@freebsd.org
Subject:   Re: D-Link DGE-350T and if_sk (no go)
Message-ID:  <1166088126.1125.12.camel@chekov>
In-Reply-To: <45808382.7000802@FreeBSD.org>
References:  <d8a0b7620612131359h1a533b2cib48399c1f08a8a1b@mail.gmail.com> <45807C05.8040703@FreeBSD.org> <1166050020.1640.6.camel@chekov> <45808382.7000802@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 2006-12-13 at 22:49 +0000, Bruce M. Simpson wrote:
> Yes. It looks like (from dmesg) that your card is a Yukon 1. I think I 
> managed to get the sk driver to attach to the PCI-e Yukon in my ASUS 
> machine and had similar problems, though this was many months ago. The 
> msk driver might work for you.

Well .. i got around to trying the msk driver this morning and
unfortunately (after adding the pci-id to the msk driver) the card
probes, but doesn't attach because of the msk-driver rejecting
device-id's that are't Yukon II chips. (the if-section below in
if_msk.c)

if (sc->msk_hw_id < CHIP_ID_YUKON_XL ||
    sc->msk_hw_id > CHIP_ID_YUKON_FE) {

        device_printf(dev, "unknown device: id=0x%02x, rev=0x%02x\n",
             sc->msk_hw_id, sc->msk_hw_rev);
        error = ENXIO;
        goto fail;
}

My DGE-530T however has id=0xb1, rev=0x09 which seems to be what if_msk
considers CHIP_ID_YUKON_LITE. So it looks that without further hacking
on the msk driver trying to use if_msk instead of if_sk is an excercise
in futility, though it was definitely worth a shot.

I'll be watching the interrupts as soon as i can get a hold of my
neighbour which should probably be sometime later today. If in the
meanwhile people have other suggestions i might try, send them my way
and i'll give it a shot :)

-- 
  Pascal Hofstee





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1166088126.1125.12.camel>